summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix
index 440b768..564e8fa 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -136,7 +136,7 @@
users.users.ozpv = {
isNormalUser = true;
description = "ozpv";
- extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
+ extraGroups = [ "networkmanager" "wheel" "libvirtd" "docker" ];
packages = with pkgs; [];
shell = pkgs.zsh;
};
@@ -153,11 +153,20 @@
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
+ # docker
+ virtualisation.docker.enable = true;
+
+ virtualisation.docker.rootless = {
+ enable = true;
+ setSocketVariable = true;
+ };
+
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
libinput-gestures
brightnessctl
+ discord
vim
(st.overrideAttrs {
src = fetchGit {