initial commit with desktop
This commit is contained in:
28
configs/gui.nix
Normal file
28
configs/gui.nix
Normal 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
|
||||
];
|
||||
}
|
12
configs/virtualisation.nix
Normal file
12
configs/virtualisation.nix
Normal 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
27
configs/vscode.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user