add testpc

This commit is contained in:
Kopatz
2026-02-08 13:58:30 +01:00
parent f530f81712
commit 03562e8d88
14 changed files with 236 additions and 19 deletions

View File

@@ -42,7 +42,6 @@ in
logseq # notes
ani-cli
brave
wayvnc
];
};
}

View File

@@ -36,4 +36,8 @@
./niri.nix
./wayvnc.nix
];
options.custom.graphical.firefox-custom = {
enable = lib.mkEnableOption "Enables custom firefox";
};
}

View File

@@ -22,7 +22,7 @@ in
xkb.variant = config.mainUser.variant;
enable = true;
};
services.displayManager.sddm.enable = !config.services.xserver.displayManager.gdm.enable;
#services.displayManager.sddm.enable = !config.services.xserver.displayManager.gdm.enable;
#nix.settings = {
# substituters = [ "https://hyprland.cachix.org" ];

View File

@@ -91,7 +91,8 @@ in
# accessible via `nvidia-settings`.
nvidiaSettings = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU.
package = config.boot.kernelPackages.nvidiaPackages.beta;
#package = config.boot.kernelPackages.nvidiaPackages.beta;
package = config.boot.kernelPackages.nvidiaPackages.stable;
#package = config.boot.kernelPackages.nvidiaPackages.mkDriver {
# version = "570.124.04";
# sha256_64bit = "sha256-G3hqS3Ei18QhbFiuQAdoik93jBlsFI2RkWOBXuENU8Q=";
@@ -103,7 +104,7 @@ in
};
environment.systemPackages = with pkgs; [
vaapiVdpau
libva-vdpau-driver
libvdpau-va-gl
libva
libva-utils

View File

@@ -12,7 +12,7 @@
services.NetworkManager-wait-online.wantedBy = lib.mkForce [ ]; # Normally ["network-online.target"]
};
# mash spacebar to still be able to select a different boot option
boot.loader.timeout = 1;
boot.loader.timeout = lib.mkDefault 1;
virtualisation.docker.enableOnBoot = false;
}