diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-14 13:08:07 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-14 13:08:07 -0800 |
| commit | 05fba25e608d3d44e0785f1ddb5ab30a95129131 (patch) | |
| tree | 60a2a563002079282873afad59d296958f978fce /machines/nixos/x86_64-linux/bree.nix | |
| parent | use `just` (again) instead of custom scripts (diff) | |
| download | infra-05fba25e608d3d44e0785f1ddb5ab30a95129131.tar.gz | |
simplify path structures for machines
Diffstat (limited to 'machines/nixos/x86_64-linux/bree.nix')
| -rw-r--r-- | machines/nixos/x86_64-linux/bree.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/machines/nixos/x86_64-linux/bree.nix b/machines/nixos/x86_64-linux/bree.nix deleted file mode 100644 index 9c9177d..0000000 --- a/machines/nixos/x86_64-linux/bree.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ lib, config, ... }: -{ - imports = [ - ../../../profiles/cgroups.nix - ../../../profiles/defaults.nix - ../../../profiles/disk/basic-vm.nix - ../../../profiles/hardware/synology-vm.nix - ../../../profiles/home-manager.nix - ../../../profiles/server.nix - ../../../profiles/users/fcuny.nix - ../../../profiles/wireguard.nix - ]; - - networking.hostName = "bree"; - networking.useDHCP = lib.mkDefault true; - systemd.network.wait-online.anyInterface = lib.mkDefault config.networking.useDHCP; - - age.secrets.disk-unlock-key.file = ../../../secrets/bree/disk-unlock-key.age; - age.secrets.disk-passphrase.file = ../../../secrets/bree/disk-passphrase.age; - - services.remoteDiskUnlock = { - enable = true; - hosts = [ - "192.168.1.114" - ]; - sshKeyPath = config.age.secrets.disk-unlock-key.path; - passphrasePath = config.age.secrets.disk-passphrase.path; - }; - - system.stateVersion = "23.11"; # Did you read the comment? - - home-manager.users.fcuny = { - imports = [ - ../../../home/profiles/minimal.nix - ]; - }; -} |
