Create a clean profile
This commit is contained in:
parent
a309bcf053
commit
57d5975311
1 changed files with 20 additions and 0 deletions
20
flake.nix
20
flake.nix
|
@ -46,6 +46,26 @@
|
||||||
DerGeret = import ./profiles/machines/manuel/DerGeret/Arch/config.nix;
|
DerGeret = import ./profiles/machines/manuel/DerGeret/Arch/config.nix;
|
||||||
ManuSurface = import ./profiles/machines/manuel/ManuSurface/Arch/config.nix;
|
ManuSurface = import ./profiles/machines/manuel/ManuSurface/Arch/config.nix;
|
||||||
server = import ./profiles/machines/manuel/server.nix;
|
server = import ./profiles/machines/manuel/server.nix;
|
||||||
|
clean = { ... }: {
|
||||||
|
imports = [
|
||||||
|
./lib/modules/valhalla.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
config = {
|
||||||
|
valhalla = {
|
||||||
|
hostname = "Falcon";
|
||||||
|
|
||||||
|
windows = {
|
||||||
|
users.LocalAdmin = {
|
||||||
|
groups = [ "Administrators" ];
|
||||||
|
programs.oh-my-posh.theme.source = ./profiles/users/manuel/manuel.omp.json;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
software.essential = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue