cerulean
This commit is contained in:
parent
ac95603fc4
commit
f7de9f7a23
42 changed files with 1061 additions and 445 deletions
30
snow.nix
Normal file
30
snow.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{inputs, ...}: {
|
||||
nodes = {
|
||||
base = inputs.nixpkgs-unstable;
|
||||
homeManager = inputs.home-manager-unstable;
|
||||
|
||||
args = {inherit inputs;};
|
||||
modules = [
|
||||
inputs.nix-flatpak.nixosModules.nix-flatpak
|
||||
];
|
||||
|
||||
groups = {
|
||||
# desktop environment group
|
||||
yezelhlev = {};
|
||||
};
|
||||
|
||||
nodes = {
|
||||
# laptop
|
||||
nahemah = {
|
||||
system = "x86_64-linux";
|
||||
groups = groups: [groups.yezelhlev];
|
||||
};
|
||||
|
||||
# pc
|
||||
sandalphon = {
|
||||
system = "x86_64-linux";
|
||||
groups = groups: [groups.yezelhlev];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue