First test of all machines
This commit is contained in:
parent
b963380a0a
commit
1d0209fac3
16 changed files with 268 additions and 73 deletions
37
machines/solis/modules.nix
Normal file
37
machines/solis/modules.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../modules
|
||||
../../modules/boot/loader/grub.nix
|
||||
];
|
||||
|
||||
config.horseman = {
|
||||
users.default.enable = true;
|
||||
|
||||
base = {
|
||||
nix.enable = true;
|
||||
locale.enable = true;
|
||||
};
|
||||
|
||||
boot = {
|
||||
loader.grub.enable = true;
|
||||
};
|
||||
|
||||
network = {
|
||||
mullvad.enable = true;
|
||||
ssh.enable = true;
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
|
||||
apps = {
|
||||
terminal.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue