modules: init nh for all hosts
This commit is contained in:
parent
bb38e8300a
commit
9515e95a45
2 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
{...}: {
|
{inputs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
inputs.nh.nixosModules.default
|
||||||
./security.nix
|
./security.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
{pkgs, ...}: {
|
_: {
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nh = {
|
||||||
|
enable = true;
|
||||||
|
clean.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
|
|
Loading…
Reference in a new issue