1
0
Fork 0
forked from foxora/nix
flake-foxora/snow.nix

23 lines
441 B
Nix

{cerulean, ...} @ inputs:
cerulean.mkNexus ./. (self: {
nexus = {
specialArgs = {inherit inputs;};
extraPkgConfig = {
config.allowUnfree = true;
};
extraModules = with inputs; [
home-manager.nixosModules.home-manager
];
nodes = {
nixarawrui = {
system = "x86_64-linux";
extraModules = with inputs; [
sddm-silent.nixosModules.default
];
};
};
};
})