fstab & virt changes

This commit is contained in:
Danilo Reyes 2024-04-04 00:21:13 -06:00
parent da91eb3699
commit 02397ee72a
2 changed files with 3 additions and 14 deletions

View File

@ -34,10 +34,6 @@
# device = "/dev/disk/by-uuid/7fcac808-491f-4846-a4a9-a34cc77cb43d"; # device = "/dev/disk/by-uuid/7fcac808-491f-4846-a4a9-a34cc77cb43d";
# preLVM = true; # preLVM = true;
# }; # };
# hnbox = {
# device = "/dev/disk/by-uuid/c7dd2d5a-b0b3-46a0-aca9-3d4975c1f0bc";
# preLVM = true;
# };
}; };
kernelModules = [ "kvm-intel" ]; kernelModules = [ "kvm-intel" ];
kernel.sysctl = { kernel.sysctl = {
@ -93,11 +89,6 @@
# "datacow" # "datacow"
# ]; # ];
# }; # };
# "/mnt/disks/hnbox" = {
# device = "/dev/mapper/hnbox";
# fsType = "btrfs";
# options = [ "compress=zstd:3" "space_cache=v2" "commit=120" "datacow" ];
# };
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/c574cb53-dc40-46db-beff-0fe8a4787156"; device = "/dev/disk/by-uuid/c574cb53-dc40-46db-beff-0fe8a4787156";
fsType = "ext4"; fsType = "ext4";

View File

@ -917,7 +917,6 @@ environment = {
''; '';
}; };
systemPackages = with pkgs; [ systemPackages = with pkgs; [
# virt-manager
wget wget
gwe gwe
]; ];
@ -1188,10 +1187,9 @@ On this section, you can also add virtual machines settings.
#+begin_src nix #+begin_src nix
# programs.virt-manager.enable = true; # programs.virt-manager.enable = true;
programs.dconf.enable = true; # virt-manager requires dconf to remember settings # virtualisation = {
virtualisation = { # libvirtd.enable = true;
libvirtd.enable = false; # };
};
#+end_src #+end_src
* CLOSE SYSTEM * CLOSE SYSTEM