fix extraGroups

This commit is contained in:
Harald Hoyer 2024-01-18 16:14:11 +01:00
parent 227144bceb
commit 10d6434cdc
3 changed files with 18 additions and 16 deletions

View file

@ -608,11 +608,11 @@
]
},
"locked": {
"lastModified": 1705273357,
"narHash": "sha256-JAlkxgJbWh7+auiT0rJL3IUXXtkULRqygfxQA6mvLgc=",
"lastModified": 1705476964,
"narHash": "sha256-W5OK1fnj4qdn1HWOlxV2S3YiUvfaVjQM5ldWVpGV1fs=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "924d91e1e4c802fd8e60279a022dbae5acb36f2d",
"rev": "85c3b600f660abd86e94cbcd1c46733943197a07",
"type": "github"
},
"original": {
@ -1084,11 +1084,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1705183652,
"narHash": "sha256-rnfkyUH0x72oHfiSDhuCHDHg3gFgF+lF8zkkg5Zihsw=",
"lastModified": 1705331948,
"narHash": "sha256-qjQXfvrAT1/RKDFAMdl8Hw3m4tLVvMCc8fMqzJv0pP4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "428544ae95eec077c7f823b422afae5f174dee4b",
"rev": "b8dd8be3c790215716e7c12b247f45ca525867e2",
"type": "github"
},
"original": {

View file

@ -31,7 +31,6 @@
# jetbrains.enable = true;
};
extraGroups = [ "docker" ];
};
fonts.fontconfig.enable = true;

View file

@ -17,6 +17,9 @@ with lib.plusultra;
nix.settings.trusted-users = [ "@wheel" ];
plusultra.user.extraGroups = [ "docker" ];
programs = {
bash = {
## shellInit = ''
@ -71,17 +74,17 @@ with lib.plusultra;
virtualisation.docker.enable = true;
# virtualisation = {
# podman = {
# enable = true;
# virtualisation = {
# podman = {
# enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
# dockerCompat = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
# dockerCompat = true;
# For Nixos version > 22.11
# defaultNetwork.settings = { dns_enabled = true; };
# };
# };
# For Nixos version > 22.11
# defaultNetwork.settings = { dns_enabled = true; };
# };
# };
system.autoUpgrade = {
enable = true;