add pixie host

This commit is contained in:
Leonardo Eugênio 2022-10-22 00:03:28 -03:00
parent 8fb83fb5ca
commit 8886d75b58
2 changed files with 50 additions and 0 deletions

View file

@ -64,6 +64,12 @@
inherit system;
modules = [ ./hosts/monolith.nix ] ++ common_modules;
};
pixie = lib.nixosSystem {
inherit system;
modules = [ ./hosts/pixie.nix ] ++ common_modules ++ (_: {
packages.media-packages.enable = false;
});
};
};
};
}