Compare commits

..

No commits in common. "a9b044b1f14815b66ec25363626ea0b81edc65d6" and "bb13c54775c121ce7a990e694ebab48f01191986" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View file

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

View file

@ -51,7 +51,4 @@
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;
} }