summaryrefslogtreecommitdiff
path: root/systems/atlas/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-07 18:03:24 -0500
committerseth <[email protected]>2024-02-07 18:27:45 -0500
commitcffffeb678e9a1078eeba0f19c9607cda9f31bed (patch)
tree8b8f68aa357becad06845f15b7e528474041371c /systems/atlas/default.nix
parent48712d44fde91d2685089cca7f9d88295fd59817 (diff)
modules/nixos+darwin: move to traits + archetypes model
Diffstat (limited to 'systems/atlas/default.nix')
-rw-r--r--systems/atlas/default.nix12
1 files changed, 1 insertions, 11 deletions
diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix
index 5fd346b..1b6cbac 100644
--- a/systems/atlas/default.nix
+++ b/systems/atlas/default.nix
@@ -1,8 +1,4 @@
{
- config,
- pkgs,
- ...
-}: {
imports = [
./hardware-configuration.nix
./miniflux.nix
@@ -10,7 +6,7 @@
./teawiebot.nix
];
- suites.server.enable = true;
+ archetypes.server.enable = true;
boot = {
loader.systemd-boot.enable = true;
@@ -29,12 +25,6 @@
logrotate.checkConfig = false;
};
- users.users.atlas = {
- isNormalUser = true;
- shell = pkgs.bash;
- hashedPasswordFile = config.age.secrets.userPassword.path;
- };
-
system.stateVersion = "23.05";
zramSwap.enable = true;