my nixos flake :3 (git.koi.rip mirror) git.koi.rip/koi/flake
nixos catppuccin linux dotfiles neovim
0

Configure Feed

Select the types of activity you want to include in your feed.

desktop: init virtualisation

june (May 18, 2026, 6:35 PM +0200) ad94f005 fc57a10d

+11 -1
+1
home/modules/packages.nix
··· 20 20 noto-fonts-color-emoji 21 21 maple-mono.NF 22 22 23 + inotify-tools 23 24 wl-clipboard 24 25 25 26 kitget
+1
modules/desktop/default.nix
··· 5 5 ./console.nix 6 6 ./nixpkgs.nix 7 7 ./environment.nix 8 + ./virtualisation.nix 8 9 ./evergarden.nix 9 10 ./users.nix 10 11 ./programs
+1 -1
modules/desktop/environment.nix
··· 2 2 3 3 { 4 4 environment.systemPackages = with pkgs; [ 5 - inotify-tools 6 5 cloudflared 6 + dnsmasq 7 7 htop 8 8 ]; 9 9 }
+1
modules/desktop/programs/default.nix
··· 3 3 ./gnupg.nix 4 4 ./nix-ld.nix 5 5 ./niri.nix 6 + ./virt-manager.nix 6 7 ]; 7 8 }
+1
modules/desktop/programs/virt-manager.nix
··· 1 + { programs.virt-manager.enable = true; }
+6
modules/desktop/virtualisation.nix
··· 1 + { 2 + virtualisation.libvirtd = { 3 + enable = true; 4 + qemu.swtpm.enable = true; 5 + }; 6 + }