misc tweaks, set up vbox
This commit is contained in:
parent
85953236c2
commit
7cd3198ed0
3 changed files with 15 additions and 2 deletions
|
@ -338,6 +338,7 @@
|
||||||
./nixos/hosts/komashi
|
./nixos/hosts/komashi
|
||||||
|
|
||||||
./nixos/configs/cellular.nix
|
./nixos/configs/cellular.nix
|
||||||
|
./nixos/configs/virtualbox.nix
|
||||||
./nixos/configs/nfc-kernel.nix
|
./nixos/configs/nfc-kernel.nix
|
||||||
./nixos/configs/power-saving.nix
|
./nixos/configs/power-saving.nix
|
||||||
];
|
];
|
||||||
|
@ -351,7 +352,6 @@
|
||||||
modules = linuxGuiModules [
|
modules = linuxGuiModules [
|
||||||
./nixos/hosts/utol
|
./nixos/hosts/utol
|
||||||
|
|
||||||
./nixos/configs/vmware.nix
|
|
||||||
./nixos/configs/cellular.nix
|
./nixos/configs/cellular.nix
|
||||||
./nixos/configs/power-saving.nix
|
./nixos/configs/power-saving.nix
|
||||||
|
|
||||||
|
|
13
nixos/configs/virtualbox.nix
Normal file
13
nixos/configs/virtualbox.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
virtualisation.virtualbox.host = {
|
||||||
|
enable = true;
|
||||||
|
enableExtensionPack = true;
|
||||||
|
};
|
||||||
|
users.extraGroups.vboxusers.members = [ "deprekated" ];
|
||||||
|
|
||||||
|
boot.extraModprobeConfig = ''
|
||||||
|
install kvm_intel /bin/true
|
||||||
|
install kvm_amd /bin/true
|
||||||
|
install kvm /bin/true
|
||||||
|
'';
|
||||||
|
}
|
|
@ -295,7 +295,7 @@ scrollback_lines_to_serialize 0
|
||||||
// Whether to show tips on startup
|
// Whether to show tips on startup
|
||||||
// Default: true
|
// Default: true
|
||||||
//
|
//
|
||||||
show_startup_tips true
|
show_startup_tips false
|
||||||
|
|
||||||
// Whether to show release notes on first version run
|
// Whether to show release notes on first version run
|
||||||
// Default: true
|
// Default: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue