Desktop changes

This commit is contained in:
2024-09-12 18:43:03 +02:00
parent 5d25dcf186
commit 3b7198327e
10 changed files with 94 additions and 17 deletions

View File

@@ -11,12 +11,17 @@
# CLI
../../modules/system/cli/common.nix
../../modules/system/cli/podman.nix
# Hardware
../../modules/system/hardware/firewall.nix
../../modules/system/hardware/garbage-collection.nix
../../modules/system/hardware/locale.nix
../../modules/system/hardware/nvidia.nix
# Containers
# ../../modules/containers/adguard.nix
# ../../modules/containers/caddy.nix
];
nix.settings = {
@@ -45,7 +50,17 @@
extraGroups = [ "networkmanager" "wheel" "dialout" "fuse" ];
};
boot.kernelPackages = pkgs.linuxPackages_latest;
services.openssh.enable = true;
# boot.kernelPackages = pkgs.linuxPackages_latest;
# sunshine
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
system.stateVersion = "24.05";

View File

@@ -8,18 +8,18 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/b4cefbc5-dd3d-4a4b-84d0-031b2ed7655c";
{ device = "/dev/disk/by-uuid/f8dc500b-2b36-4ca8-940b-1716742d6cf3";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/9A7D-7464";
{ device = "/dev/disk/by-uuid/029A-9287";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};

View File

@@ -30,7 +30,10 @@
host = "xv-desktop";
home.packages = with pkgs; [
unstable.prismlauncher
unstable.prismlauncher
unstable.modrinth-app
unstable.vesktop
unstable.blender
];
home.stateVersion = "24.05";