Compare commits

...

2 commits

Author SHA1 Message Date
76e2c84490
add docker 2025-02-07 20:58:53 -05:00
8ee00b5e21
use new thunderbird channel 2025-02-07 20:58:31 -05:00
2 changed files with 6 additions and 2 deletions

View file

@ -84,7 +84,7 @@
qemu
rsync
starship
thunderbird
thunderbird-latest
yt-dlp
zathura
];

View file

@ -56,11 +56,15 @@
jack.enable = true;
};
# docker
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
# create user account
users.users.${config.user} = {
isNormalUser = true;
description = config.fullName;
extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" ];
extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" "docker" ];
home = config.homePath;
shell = pkgs.zsh;
};