diff options
author | Alex Auvolat <alex@adnab.me> | 2023-11-26 19:41:56 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-11-26 19:41:56 +0100 |
commit | 66b9e2a7f85024e38c6f466686a1cd5d7f3ceba3 (patch) | |
tree | af130d5a26badc05b4425e6692655fac4585b161 | |
parent | 1ffdbf90fb18b2268b6cd2bbd0ff13b87ce78381 (diff) | |
download | user-config-66b9e2a7f85024e38c6f466686a1cd5d7f3ceba3.tar.gz user-config-66b9e2a7f85024e38c6f466686a1cd5d7f3ceba3.zip |
kusanagi docker and bigger root
-rw-r--r-- | nixos/kusanagi.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix index 3a89519..c6c224f 100644 --- a/nixos/kusanagi.nix +++ b/nixos/kusanagi.nix @@ -68,7 +68,7 @@ in fileSystems."/" = { device = "none"; fsType = "tmpfs"; - options = [ "defaults" "size=4G" "mode=755" ]; + options = [ "defaults" "size=8G" "mode=755" ]; }; fileSystems."/persist" = @@ -98,7 +98,7 @@ in users.mutableUsers = false; users.users.lx.passwordFile = "/Z/lx/.password"; users.users.lx.uid = 1000; - users.users.lx.extraGroups = [ "vboxusers" ]; + users.users.lx.extraGroups = [ "vboxusers" "docker" ]; # ---- no persistent home, use home manager to set everything up ---- @@ -133,6 +133,7 @@ in # ---- other + virtualisation.docker.enable = true; virtualisation.virtualbox.host.enable = true; # ---- |