refactor out package module virtualbox
This commit is contained in:
parent
b22a791932
commit
c60b68ff75
2 changed files with 7 additions and 4 deletions
|
@ -24,6 +24,7 @@
|
||||||
../../modules/package/osu-lazer-bin.nix
|
../../modules/package/osu-lazer-bin.nix
|
||||||
../../modules/package/otd.nix
|
../../modules/package/otd.nix
|
||||||
../../modules/package/shell.nix
|
../../modules/package/shell.nix
|
||||||
|
../../modules/package/virtualbox.nix
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
];
|
];
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
@ -255,10 +256,6 @@
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
||||||
};
|
};
|
||||||
|
|
||||||
# VirtualBox
|
|
||||||
virtualisation.virtualbox.host.enable = true;
|
|
||||||
virtualisation.virtualbox.host.enableExtensionPack = true;
|
|
||||||
|
|
||||||
services.open-webui.enable = true;
|
services.open-webui.enable = true;
|
||||||
services.ollama = {
|
services.ollama = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
6
modules/package/virtualbox.nix
Normal file
6
modules/package/virtualbox.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
virtualisation.virtualbox.host.enable = true;
|
||||||
|
virtualisation.virtualbox.host.enableExtensionPack = true;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue