Compare commits

..

2 commits

Author SHA1 Message Date
a9b044b1f1 Missing GPU acceleration for Luci 2023-09-07 15:41:55 +02:00
5b0d953272 Bad named host 2023-09-07 15:41:00 +02:00
2 changed files with 5 additions and 2 deletions

View file

@ -29,11 +29,11 @@ in rec {
home-manager.nixosModule
];
};
lucy = nixpkgs.lib.nixosSystem {
luci = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit stateVersion;
hostname = "lucy";
hostname = "luci";
username = "ephase";
hostConfig = {
gaming = false;

View file

@ -51,4 +51,7 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
}