summaryrefslogtreecommitdiff
path: root/systems/glados/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-02 14:40:21 -0500
committerseth <[email protected]>2024-02-02 14:40:21 -0500
commit9758b8236dcaafb958e6ef4f634d201af0bea80b (patch)
tree5c5e2ad317d6bef10a26487c5aa2e7887e18f68c /systems/glados/default.nix
parentb405f4750738a0850cf220f7bade601a8c6355b5 (diff)
modules/nixos+darwin: make everything an actual module again
Diffstat (limited to 'systems/glados/default.nix')
-rw-r--r--systems/glados/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/systems/glados/default.nix b/systems/glados/default.nix
index 717e371..4b43bcc 100644
--- a/systems/glados/default.nix
+++ b/systems/glados/default.nix
@@ -1,6 +1,5 @@
{
lib,
- self,
inputs,
...
}: {
@@ -10,13 +9,16 @@
./nvidia.nix
inputs.nixos-hardware.nixosModules.common-pc-ssd
- self.nixosModules.desktop
- self.nixosModules.gnome
];
+ desktop = {
+ enable = true;
+ gnome.enable = true;
+ };
+
features = {
+ containers.enable = true;
tailscale.enable = true;
- virtualisation.enable = true;
};
home-manager.users.seth = {