Merge branch 'prod' into test

This commit is contained in:
TheWanderingCrow 2025-10-11 13:00:33 -04:00
commit fdc163cd8e
4 changed files with 15 additions and 4 deletions

View file

@ -32,6 +32,9 @@ in {
bitwarden-cli bitwarden-cli
yaak yaak
vimgolf vimgolf
httpie
protonvpn-cli
protonvpn-gui
; ;
}; };

View file

@ -27,7 +27,6 @@ in {
"hosts/common/core/editor.nix" "hosts/common/core/editor.nix"
"hosts/common/core/fonts.nix" "hosts/common/core/fonts.nix"
"hosts/common/core/sudo.nix" "hosts/common/core/sudo.nix"
"hosts/common/core/nebula.nix"
"hosts/common/core/avahi.nix" "hosts/common/core/avahi.nix"
"hosts/common/core/dns.nix" "hosts/common/core/dns.nix"
"hosts/common/users/primary" "hosts/common/users/primary"

View file

@ -1,6 +1,14 @@
{ {
virtualisation.virtualbox.host = { virtualisation.virtualbox = {
enable = true; host = {
addNetworkInterface = true; enable = true;
addNetworkInterface = true;
};
guest = {
enable = true;
vboxsf = true;
dragAndDrop = true;
clipboard = true;
};
}; };
} }

View file

@ -38,6 +38,7 @@ in {
"networkmanager" "networkmanager"
"scanner" # for print/scan" "scanner" # for print/scan"
"lp" # for print/scan" "lp" # for print/scan"
"vboxusers"
]) ])
]; ];
}; };