Compare commits

..

No commits in common. "a2b2057bb1ea4a36cbfb90a93e54bb3e605b39a4" and "bde883ccf6f1f08061942fd088c3709db5a663f5" have entirely different histories.

2 changed files with 16 additions and 30 deletions

View file

@ -20,35 +20,20 @@
# nur.url = "github:nix-community/NUR"; # nur.url = "github:nix-community/NUR";
}; };
outputs = outputs = { self, nixpkgs, home-manager }:
{
self,
nixpkgs,
home-manager,
}:
let let
system = "x86_64-linux"; system = "x86_64-linux";
in hostname = "de-lacadie";
{ in {
nixosConfigurations = nixosConfigurations = {
let ${hostname} = nixpkgs.lib.nixosSystem {
hostnameToConfig = hostname: { inherit system;
name = hostname; modules = [
value = nixpkgs.lib.nixosSystem { ./hosts/${hostname}/configuration.nix
inherit system; home-manager.nixosModules.home-manager
modules = [ # nur.nixosModules.nur
./hosts/${hostname}/configuration.nix ];
home-manager.nixosModules.home-manager };
# nur.nixosModules.nur };
];
};
};
in
builtins.listToAttrs (
builtins.map hostnameToConfig [
"randolph"
"de-lacadie"
]
);
}; };
} }

View file

@ -70,9 +70,10 @@
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
# Enable nvidia drivers and graphics. # Enable nvidia drivers and graphics.
hardware.graphics = { hardware.opengl = {
enable = true; enable = true;
enable32Bit = true; driSupport = true;
driSupport32Bit = true;
}; };
# Load nvidia driver for Xorg and Wayland # Load nvidia driver for Xorg and Wayland