Setup tardis

This commit is contained in:
2026-07-07 12:28:58 +01:00
parent 233b9d674a
commit 8e34c30072
6 changed files with 51 additions and 5 deletions
+11 -1
View File
@@ -6,11 +6,21 @@
./hardware-configuration.nix
];
boot.blacklistedKernelModules = [
"nouveau"
];
environment.systemPackages = lib.mkAfter (with pkgs; [
firefox
kitty
rofi
]);
services.xserver.enable = true;
services.xserver = {
enable = true;
displayManager.startx.enable = true;
videoDrivers = [ "modesetting" ];
};
networking.hostName = "tardis";
}