tangled
alpha
login
or
join now
quilling.dev
/
nixos-config
2
fork
atom
My personal nix config files. Feel free to import flake.
2
fork
atom
overview
issues
pulls
pipelines
correct btop placement
quilling.dev
7 months ago
37cc4272
7ba9fa89
+12
-10
1 changed file
expand all
collapse all
unified
split
hosts
thoughtful.nix
+12
-10
hosts/thoughtful.nix
···
44
44
];
45
45
};
46
46
# VM
47
47
-
programs = {
48
48
-
dconf.enable = true;
49
49
-
btop = {
50
50
-
enable = true;
51
51
-
# settings = { };
52
52
-
# extraConfig = " ";
53
53
-
package = pkgs.btop.override {rocmSupport = true;};
54
54
-
};
55
55
-
};
47
47
+
programs.dconf.enable = true;
56
48
users.users.gcis.extraGroups = [ "libvirtd" ];
57
49
users.users.gcis.group = "gcis";
58
50
users.groups.gcis = {};
59
51
users.users.gcis.isSystemUser = true;
60
60
-
environment.systemPackages = with pkgs; [ virt-manager virt-viewer spice spice-gtk spice-protocol win-virtio win-spice adwaita-icon-theme ];
52
52
+
environment.systemPackages = with pkgs; [
53
53
+
virt-manager
54
54
+
virt-viewer
55
55
+
spice
56
56
+
spice-gtk
57
57
+
spice-protocol
58
58
+
win-virtio
59
59
+
win-spice
60
60
+
adwaita-icon-theme
61
61
+
btop.override {rocmSupport = true;} # Not related to VM though
62
62
+
];
61
63
virtualisation = { libvirtd = { enable = true; qemu = { swtpm.enable = true; ovmf.enable = true; ovmf.packages = [ pkgs.OVMFFull.fd ]; }; }; spiceUSBRedirection.enable = true; }; services.spice-vdagentd.enable = true;
62
64
# /VM
63
65
teq.nixos = {