Compare commits
2 commits
27560e729c
...
76e2c84490
Author | SHA1 | Date | |
---|---|---|---|
76e2c84490 | |||
8ee00b5e21 |
2 changed files with 6 additions and 2 deletions
nix
|
@ -84,7 +84,7 @@
|
|||
qemu
|
||||
rsync
|
||||
starship
|
||||
thunderbird
|
||||
thunderbird-latest
|
||||
yt-dlp
|
||||
zathura
|
||||
];
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue