diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/aptos/default.nix | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/hosts/aptos/default.nix b/hosts/aptos/default.nix index 0676887..af796cf 100644 --- a/hosts/aptos/default.nix +++ b/hosts/aptos/default.nix @@ -1,7 +1,13 @@ -{ ... }: +{ self, ... }: { - imports = [ ./hardware.nix ./sound.nix ./networking.nix ./services.nix ]; + imports = [ + ./hardware.nix + ./sound.nix + ./networking.nix + ./services.nix + "${self}/profiles/workstation.nix" + ]; # Allow setting GTK configuration using home-manager programs.dconf.enable = true; @@ -12,17 +18,6 @@ # install and configure sway my.programs.sway.enable = true; - virtualisation.docker = { enable = true; }; - - virtualisation.containerd = { - enable = true; - settings = { - plugins."io.containerd.grpc.v1.cri" = { - containerd.snapshotter = "overlayfs"; - }; - }; - }; - # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave |