diff options
| -rw-r--r-- | modules/darwin/profiles/personal.nix | 4 | ||||
| -rw-r--r-- | modules/nixos/profiles/personal.nix | 4 | ||||
| -rw-r--r-- | modules/nixos/profiles/server.nix | 4 | ||||
| -rw-r--r-- | systems/atlas/default.nix | 4 | ||||
| -rw-r--r-- | systems/caroline/default.nix | 4 | ||||
| -rw-r--r-- | systems/glados-wsl/default.nix | 4 | ||||
| -rw-r--r-- | systems/glados/default.nix | 4 |
7 files changed, 16 insertions, 12 deletions
diff --git a/modules/darwin/profiles/personal.nix b/modules/darwin/profiles/personal.nix index 025197a..bc84c70 100644 --- a/modules/darwin/profiles/personal.nix +++ b/modules/darwin/profiles/personal.nix @@ -1,11 +1,11 @@ { config, lib, ... }: let - cfg = config.profiles.personal; + cfg = config.borealis.profiles.personal; in { - options.profiles.personal = { + options.borealis.profiles.personal = { enable = lib.mkEnableOption "the Personal profile"; }; diff --git a/modules/nixos/profiles/personal.nix b/modules/nixos/profiles/personal.nix index 9f3615f..75f538d 100644 --- a/modules/nixos/profiles/personal.nix +++ b/modules/nixos/profiles/personal.nix @@ -6,11 +6,11 @@ }: let - cfg = config.profiles.personal; + cfg = config.borealis.profiles.personal; in { - options.profiles.personal = { + options.borealis.profiles.personal = { enable = lib.mkEnableOption "the Personal profile"; }; diff --git a/modules/nixos/profiles/server.nix b/modules/nixos/profiles/server.nix index 09d1076..f8cb0ab 100644 --- a/modules/nixos/profiles/server.nix +++ b/modules/nixos/profiles/server.nix @@ -8,7 +8,7 @@ }: let - cfg = config.profiles.server; + cfg = config.borealis.profiles.server; # 2^30 # Why doesn't nix have a `pow`??? @@ -17,7 +17,7 @@ let in { - options.profiles.server = { + options.borealis.profiles.server = { enable = lib.mkEnableOption "the Server profile"; }; diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix index f08847f..66ee476 100644 --- a/systems/atlas/default.nix +++ b/systems/atlas/default.nix @@ -12,7 +12,9 @@ inputs.self.nixosModules.default ]; - profiles.server.enable = true; + borealis = { + profiles.server.enable = true; + }; boot = { loader.systemd-boot.enable = true; diff --git a/systems/caroline/default.nix b/systems/caroline/default.nix index 9e32db3..633e60c 100644 --- a/systems/caroline/default.nix +++ b/systems/caroline/default.nix @@ -4,7 +4,9 @@ inputs.self.darwinModules.default ]; - profiles.personal.enable = true; + borealis = { + profiles.personal.enable = true; + }; homebrew.casks = [ "altserver" diff --git a/systems/glados-wsl/default.nix b/systems/glados-wsl/default.nix index 2fd7477..628bd9e 100644 --- a/systems/glados-wsl/default.nix +++ b/systems/glados-wsl/default.nix @@ -7,6 +7,8 @@ ]; borealis = { + profiles.personal.enable = true; + determinate.enable = true; remote-builders = { @@ -19,8 +21,6 @@ }; }; - profiles.personal.enable = true; - environment.systemPackages = with pkgs; [ wget wslu diff --git a/systems/glados/default.nix b/systems/glados/default.nix index 9e54f08..3fdc3ae 100644 --- a/systems/glados/default.nix +++ b/systems/glados/default.nix @@ -13,6 +13,8 @@ ]; borealis = { + profiles.personal.enable = true; + determinate.enable = true; remote-builders = { @@ -25,8 +27,6 @@ }; }; - profiles.personal.enable = true; - boot = { kernelParams = [ "amd_pstate=active" |
