add baal
This commit is contained in:
parent
b82175c17b
commit
6559e6f1c7
4 changed files with 104 additions and 1 deletions
29
hosts/baal/default.nix
Normal file
29
hosts/baal/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ config, lib, pkgs, modulesPath, inputs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
./secrets.nix
|
||||
|
||||
../../common/system.nix
|
||||
../../common/users.nix
|
||||
../../common/services.nix
|
||||
|
||||
../../host-secrets.nix
|
||||
];
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
|
||||
systemd.targets.multi-user.enable = true;
|
||||
|
||||
networking = {
|
||||
hostName = "baal";
|
||||
hostId = "193mdalf";
|
||||
networkmanager.enable = true;
|
||||
};
|
||||
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
enableOnBoot = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue