diff options
| author | seth <[email protected]> | 2023-08-16 17:51:20 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-17 13:55:47 -0400 |
| commit | 76127171e4ed7abcb2a14039f358e117aac20181 (patch) | |
| tree | 4070c834ec4b3c9a2cf0dfb5207000bd565e51da /hosts/profiles.nix | |
| parent | 95ac27788ecb6221867f1a2738ce12b445775bf4 (diff) | |
hosts+users: adopt new module names
Diffstat (limited to 'hosts/profiles.nix')
| -rw-r--r-- | hosts/profiles.nix | 38 |
1 files changed, 17 insertions, 21 deletions
diff --git a/hosts/profiles.nix b/hosts/profiles.nix index ec8cb04..eb69fc6 100644 --- a/hosts/profiles.nix +++ b/hosts/profiles.nix @@ -45,7 +45,7 @@ in { home-manager.nixosModules.home-manager nur.nixosModules.nur - self.nixosModules.getchoo + self.nixosModules.default ../users/seth { @@ -59,7 +59,7 @@ in { }; }; - getchoo.base.enable = true; + base.enable = true; system.stateVersion = "23.11"; } ]; @@ -74,13 +74,11 @@ in { ../users/seth ../users/seth/darwin.nix - self.darwinModules.getchoo + self.darwinModules.default { - getchoo = { - base.enable = true; - desktop.enable = true; - }; + base.enable = true; + desktop.enable = true; system.stateVersion = 4; } ]; @@ -97,22 +95,20 @@ in { ../modules/nixos/features/tailscale.nix { - getchoo = { - features.tailscale = { - enable = true; - ssh.enable = true; - }; + features.tailscale = { + enable = true; + ssh.enable = true; + }; - server = { + server = { + enable = true; + services.promtail = { enable = true; - services.promtail = { - enable = true; - clients = [ - { - url = "http://p-body:3030/loki/api/v1/push"; - } - ]; - }; + clients = [ + { + url = "http://p-body:3030/loki/api/v1/push"; + } + ]; }; }; |
