diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 89e589aa..a65073f6 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -33,7 +33,7 @@ in users.users.cyryl = { isNormalUser = true; - extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" ]; + extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" "docker" ]; packages = with pkgs; [ firefox chromium terminator zsh keepass fontconfig go nodejs unstable.rustup gcc gdb binutils xclip pkgconfig veracrypt gitAndTools.diff-so-fancy gnome3.gnome-shell-extensions chrome-gnome-shell gnomeExtensions.clipboard-indicator gnomeExtensions.caffeine gnomeExtensions.no-title-bar unstable.gnomeExtensions.gsconnect unstable.appimage-run openjdk10 pdftk pdfshuffler gimp restic ]; @@ -41,6 +41,11 @@ in shell = pkgs.zsh; }; + virtualisation.docker = { + enable = true; + autoPrune.enable = true; + }; + services = { gnome3.chrome-gnome-shell.enable = true;