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 home-manager.nixosModule
]; ];
}; };
lucy = nixpkgs.lib.nixosSystem { luci = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit stateVersion; inherit stateVersion;
hostname = "lucy"; hostname = "luci";
username = "ephase"; username = "ephase";
hostConfig = { hostConfig = {
gaming = false; gaming = false;

View file

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