tohru: Install Docker

This commit is contained in:
Katherina Walshe-Grey 2025-10-04 16:04:19 +01:00
parent 6a76a54503
commit a5c6a9a7da

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, inputs, ... }: { config, lib, pkgs, inputs, ... }:
let let
inherit (lib) mkForce; inherit (lib) mkIf mkForce;
in in
{ {
imports = [ imports = [
@ -37,6 +37,7 @@ in
users.users.qenya.extraGroups = [ users.users.qenya.extraGroups = [
"networkmanager" # UI wifi configuration "networkmanager" # UI wifi configuration
"dialout" # access to serial ports "dialout" # access to serial ports
"docker"
]; ];
nixpkgs.overlays = [ inputs.scoutshonour.overlays.default ]; 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.evolution.enable = true; # not in home-manager yet; not declaratively configurable yet
programs.steam.enable = true; programs.steam.enable = true;
virtualisation.docker.enable = true;
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }