forked from UniverseBow/flake
init (cerulean template)
This commit is contained in:
commit
1b7b1e66f0
65 changed files with 5597 additions and 0 deletions
29
snow.nix
Normal file
29
snow.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{inputs, ...} @ args: {
|
||||
nodes = {
|
||||
base = inputs.nixpkgs;
|
||||
homeManager = inputs.home-manager;
|
||||
|
||||
args = {inherit inputs;};
|
||||
modules = [
|
||||
inputs.sddm-silent.nixosModules.default
|
||||
inputs.wa2k.nixosModules.default
|
||||
];
|
||||
|
||||
groups = {
|
||||
# group containing all your desktops
|
||||
desktops = {};
|
||||
};
|
||||
|
||||
nodes = {
|
||||
# wow she's on nix :3
|
||||
MACBOOKI9 = {
|
||||
system = "x86_64-linux";
|
||||
groups = groups: [groups.desktops];
|
||||
modules = with inputs; [
|
||||
grub2-themes.nixosModules.default
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue