remove virt-manager and qemu
This commit is contained in:
parent
dc768f03bc
commit
d487711869
6 changed files with 1 additions and 36 deletions
|
@ -16,7 +16,7 @@ in
|
||||||
inherit (users.primary) hashedPassword;
|
inherit (users.primary) hashedPassword;
|
||||||
description = users.primary.realName;
|
description = users.primary.realName;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "docker" "libvirtd" "networkmanager" "tss" "wheel" ];
|
extraGroups = [ "docker" "networkmanager" "tss" "wheel" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
users.primary.sshPublicKey
|
users.primary.sshPublicKey
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
./virt-manager.nix
|
|
||||||
./yt-dlp.nix
|
./yt-dlp.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{ pkgs, ... }: {
|
|
||||||
home.packages = [ pkgs.virt-manager ];
|
|
||||||
dconf.settings = {
|
|
||||||
"org/virt-manager/virt-manager/confirm" = {
|
|
||||||
forcepoweroff = false;
|
|
||||||
};
|
|
||||||
"org/virt-manager/virt-manager/connections" = {
|
|
||||||
autoconnect = [ "qemu:///system" ];
|
|
||||||
uris = [ "qemu:///system" ];
|
|
||||||
};
|
|
||||||
"org/virt-manager/virt-manager/new-vm" = { firmware = "uefi"; };
|
|
||||||
"org/virt-manager/virt-manager/stats" = {
|
|
||||||
enable-disk-poll = true;
|
|
||||||
enable-net-poll = true;
|
|
||||||
};
|
|
||||||
"org/virt-manager/virt-manager/vmlist-fields" = { network-traffic = true; };
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -130,10 +130,6 @@ in
|
||||||
"center,class:^(gnome-system-monitor)$"
|
"center,class:^(gnome-system-monitor)$"
|
||||||
"size 60% 50%,class:^(gnome-system-monitor)$"
|
"size 60% 50%,class:^(gnome-system-monitor)$"
|
||||||
|
|
||||||
"float,class:^(virt-manager)$"
|
|
||||||
"size 25% 50%,class:^(virt-manager)$,title:^(Virtual Machine Manager)$"
|
|
||||||
"move 5%% 10%,class:^(virt-manager)$,title:^(Virtual Machine Manager)$"
|
|
||||||
|
|
||||||
"float,class:^(.yubioath-flutter-wrapped_)$"
|
"float,class:^(.yubioath-flutter-wrapped_)$"
|
||||||
"center,class:^(.yubioath-flutter-wrapped_)$"
|
"center,class:^(.yubioath-flutter-wrapped_)$"
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@ _: {
|
||||||
"/var/lib/docker"
|
"/var/lib/docker"
|
||||||
"/var/lib/fwupd"
|
"/var/lib/fwupd"
|
||||||
"/var/lib/iwd"
|
"/var/lib/iwd"
|
||||||
"/var/lib/libvirt"
|
|
||||||
"/var/lib/machines"
|
"/var/lib/machines"
|
||||||
"/var/lib/NetworkManager"
|
"/var/lib/NetworkManager"
|
||||||
"/var/lib/nixos"
|
"/var/lib/nixos"
|
||||||
|
|
|
@ -5,16 +5,5 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
storageDriver = "btrfs";
|
storageDriver = "btrfs";
|
||||||
};
|
};
|
||||||
kvmgt.enable = true;
|
|
||||||
libvirtd = {
|
|
||||||
enable = true;
|
|
||||||
qemu = {
|
|
||||||
package = pkgs.qemu_kvm;
|
|
||||||
ovmf = {
|
|
||||||
enable = true;
|
|
||||||
packages = [ pkgs.OVMFFull.fd ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue