aboutsummaryrefslogtreecommitdiff
path: root/machines/bree.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-14 13:08:07 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-14 13:08:07 -0800
commit05fba25e608d3d44e0785f1ddb5ab30a95129131 (patch)
tree60a2a563002079282873afad59d296958f978fce /machines/bree.nix
parentuse `just` (again) instead of custom scripts (diff)
downloadinfra-05fba25e608d3d44e0785f1ddb5ab30a95129131.tar.gz
simplify path structures for machines
Diffstat (limited to '')
-rw-r--r--machines/bree.nix (renamed from machines/nixos/x86_64-linux/bree.nix)22
1 files changed, 11 insertions, 11 deletions
diff --git a/machines/nixos/x86_64-linux/bree.nix b/machines/bree.nix
index 9c9177d..e4cd443 100644
--- a/machines/nixos/x86_64-linux/bree.nix
+++ b/machines/bree.nix
@@ -1,22 +1,22 @@
{ 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
+ ../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;
+ 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;
@@ -31,7 +31,7 @@
home-manager.users.fcuny = {
imports = [
- ../../../home/profiles/minimal.nix
+ ../home/profiles/minimal.nix
];
};
}