diff options
| author | Seth Flynn <[email protected]> | 2025-02-13 16:54:19 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-13 22:09:11 -0500 |
| commit | 386ecf3d14ea486aba523b14200fcd2e7e04b9d6 (patch) | |
| tree | c9009fe26ece76f0c9d76ba89895094ee500b054 /systems/glados | |
| parent | fdd2dd359c1d72b9ebeb676efb4141b5536f160c (diff) | |
nixos: make more "traits" mixins
Diffstat (limited to 'systems/glados')
| -rw-r--r-- | systems/glados/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/systems/glados/default.nix b/systems/glados/default.nix index 0d64af7..42cdeb8 100644 --- a/systems/glados/default.nix +++ b/systems/glados/default.nix @@ -4,6 +4,7 @@ inputs, ... }: + { imports = [ ./hardware-configuration.nix @@ -80,10 +81,14 @@ traits = { arm-builder.enable = true; - containers.enable = true; determinate.enable = true; mac-builder.enable = true; - tailscale.enable = true; - zram.enable = true; }; + + virtualisation = { + oci-containers.backend = "podman"; + podman.enable = true; + }; + + zramSwap.enable = true; } |
