mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 17:32:19 +00:00
25 lines
No EOL
545 B
Nix
25 lines
No EOL
545 B
Nix
{ inputs, outputs,... }: {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
./fish.nix
|
|
./locale.nix
|
|
./nix.nix
|
|
./network-manager.nix
|
|
./tailscale.nix
|
|
] ++ (builtins.attrValues outputs.nixosModules);
|
|
|
|
home-manager.extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
nixpkgs = {
|
|
overlays = builtins.attrValues outputs.overlays;
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
environment.enableAllTerminfo = true;
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
networking.domain = "vim.wtf";
|
|
|
|
} |