[virtualbox] Move into proper module
This commit is contained in:
parent
3c02616bd4
commit
f25a86f7c0
7 changed files with 29 additions and 20 deletions
|
@ -5,7 +5,6 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules-old/hardware/nvidia.nix
|
../../modules-old/hardware/nvidia.nix
|
||||||
|
|
||||||
../../modules-old/apps/virtualbox
|
|
||||||
../../modules-old/des/gnome
|
../../modules-old/des/gnome
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,5 @@
|
||||||
./kitty
|
./kitty
|
||||||
./steam
|
./steam
|
||||||
./thunderbird
|
./thunderbird
|
||||||
# ./virtualbox
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
|
|
||||||
virtualisation.virtualbox = {
|
|
||||||
host = {
|
|
||||||
enable = true;
|
|
||||||
enableExtensionPack = true;
|
|
||||||
};
|
|
||||||
guest = {
|
|
||||||
enable = true;
|
|
||||||
x11 = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
users.extraGroups.vboxusers.members = [
|
|
||||||
"user-with-access-to-virtualbox"
|
|
||||||
];
|
|
||||||
|
|
||||||
}
|
|
|
@ -4,5 +4,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./programs
|
./programs
|
||||||
./users
|
./users
|
||||||
|
./virtualisation
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,6 @@ in {
|
||||||
# If you specify an application here, it will be detected by the configuration module
|
# If you specify an application here, it will be detected by the configuration module
|
||||||
# and the configuration files will be put in place for you.
|
# and the configuration files will be put in place for you.
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
brave
|
|
||||||
duf
|
duf
|
||||||
jellyfin-media-player
|
jellyfin-media-player
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
|
|
5
nixos/modules/virtualisation/default.nix
Normal file
5
nixos/modules/virtualisation/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./virtualbox
|
||||||
|
];
|
||||||
|
}
|
23
nixos/modules/virtualisation/virtualbox/default.nix
Normal file
23
nixos/modules/virtualisation/virtualbox/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.sisyphus.virtualisation.virtualbox;
|
||||||
|
in {
|
||||||
|
options.sisyphus.virtualisation.virtualbox.enable = lib.mkEnableOption "VirtualBox";
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
virtualisation.virtualbox = {
|
||||||
|
host = {
|
||||||
|
enable = true;
|
||||||
|
enableExtensionPack = true;
|
||||||
|
};
|
||||||
|
guest = {
|
||||||
|
enable = true;
|
||||||
|
x11 = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
users.extraGroups.vboxusers.members = [
|
||||||
|
"user-with-access-to-virtualbox"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue