forked from foxora/nix
24 lines
441 B
Nix
24 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
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
})
|