diff --git a/configuration.nix b/configuration.nix index 3dc5f29..5c4b36e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -104,8 +104,13 @@ thunderbird lf fzf + qemu ]; + programs.virt-manager.enable = true; + users.groups.libvirtd.members = ["smayzy"]; + virtualisation.libvirtd.enable = true; + programs.fzf.keybindings = true; services.flatpak = { diff --git a/dotfiles/kitty.conf b/dotfiles/kitty.conf index 232a343..238b626 100644 --- a/dotfiles/kitty.conf +++ b/dotfiles/kitty.conf @@ -6,3 +6,4 @@ selection_background #c1ddff foreground #c8c8c8 background #323232 background_opacity 0.8 +confirm_os_window_close 0 diff --git a/home.nix b/home.nix index 7986a08..0364fba 100644 --- a/home.nix +++ b/home.nix @@ -57,6 +57,13 @@ EDITOR = "vim"; }; + dconf.settings = { + "org/virt-manager/virt-manager/connections" = { + autoconnect = ["qemu:///system"]; + uris = ["qemu:///system"]; + }; + }; + programs.zsh = { enable = true; enableCompletion = true;