org fixes that were overwritten

This commit is contained in:
2023-09-24 22:34:36 -06:00
parent 0a0e835d1d
commit be565e25a2
2 changed files with 12 additions and 6 deletions

View File

@@ -358,6 +358,7 @@ users = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "scanner"
"lp" "piracy" "kavita" "video" "docker"
"libvirt"
];
initialPassword = "password";
openssh = {
@@ -1139,15 +1140,20 @@ boot.kernelPackages = pkgs.linuxPackagesFor (pkgs.linux_6_1.override {
});
#+end_src
* DOCKER
* VIRTUALIZATION
Basic docker settings to be able to run some images, although most docker images
run on my server.
libvirt allows me to run virtual machines and other operating systems.
#+begin_src nix
virtualisation.docker = {
enable = true;
storageDriver = "btrfs";
enableNvidia = true;
virtualisation = {
docker = {
enable = true;
storageDriver = "btrfs";
enableNvidia = true;
};
libvirtd.enable = true;
};
#+end_src