blob: 8d19a9f8b995fa1ae37271ad810e8f412b7e0e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ inputs, outputs, ... }: {
imports = [
inputs.home-manager.nixosModules.home-manager
./locale.nix
./nix.nix
./shells.nix
./zsh.nix
] ++ (builtins.attrValues outputs.nixosModules);
home-manager.extraSpecialArgs = { inherit inputs outputs; };
nixpkgs = {
# you can add global overlays here
overlays = builtins.attrValues outputs.overlays;
config = {
allowUnfree = true;
};
};
hardware.enableRedistributableFirmware = true;
}
|