initial commit with desktop

This commit is contained in:
Alexander Szczepanski
2021-06-09 20:52:21 +02:00
commit 646b0b4ce5
5 changed files with 299 additions and 0 deletions

28
configs/gui.nix Normal file
View File

@ -0,0 +1,28 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
kitty
chromium
gparted
keepassxc
meld
twemoji-color-font
mpv
brave
firefox
alacritty
baobab
lutris
insomnia
jellyfin-web
kdenlive
nextcloud-client
barrier
solaar
spotify
vulkan-tools
gnome.eog
virtmanager
];
}

View File

@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
# container virtualization
virtualisation.docker.enable = true;
# hypervisor virtualization
virtualisation.libvirtd = {
enable = true;
qemuPackage = pkgs.qemu_kvm;
};
}

27
configs/vscode.nix Normal file
View File

@ -0,0 +1,27 @@
{ pkgs, ... }:
let
extensions = (with pkgs.vscode-extensions; [
bbenoist.Nix
ms-python.python
ms-azuretools.vscode-docker
ms-vscode-remote.remote-ssh
]) ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [{
name = "remote-ssh-edit";
publisher = "ms-vscode-remote";
version = "0.47.2";
sha256 = "1hp6gjh4xp2m1xlm1jsdzxw9d8frkiidhph6nvl24d0h8z34w49g";
} {
name = "rafaelmaiolla.remote-vscode";
publisher = "rafaelmaiolla";
}];
vscode-with-extensions = pkgs.vscode-with-extensions.override {
vscodeExtensions = extensions;
};
in {
config = {
environment.systemPackages = [
vscode-with-extensions
];
};
}