From a5c6a9a7da4cb3a8c772e727fabc7f9490340d2e Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Sat, 4 Oct 2025 16:04:19 +0100 Subject: [PATCH] tohru: Install Docker --- hosts/tohru/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/tohru/default.nix b/hosts/tohru/default.nix index f9ee12c..52f2c6a 100644 --- a/hosts/tohru/default.nix +++ b/hosts/tohru/default.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, inputs, ... }: let - inherit (lib) mkForce; + inherit (lib) mkIf mkForce; in { imports = [ @@ -37,6 +37,7 @@ in users.users.qenya.extraGroups = [ "networkmanager" # UI wifi configuration "dialout" # access to serial ports + "docker" ]; nixpkgs.overlays = [ inputs.scoutshonour.overlays.default ]; @@ -64,6 +65,7 @@ in programs.evolution.enable = true; # not in home-manager yet; not declaratively configurable yet programs.steam.enable = true; + virtualisation.docker.enable = true; system.stateVersion = "23.11"; }