mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
chore: import virtualization by default as it is host-based
This commit is contained in:
parent
dc39c3f1fe
commit
dc1bd0dc18
1 changed files with 9 additions and 8 deletions
|
|
@ -1,12 +1,13 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[(import ./hardware.nix)]
|
[ (import ./hardware.nix) ]
|
||||||
++ [(import ./network.nix)]
|
++ [ (import ./network.nix) ]
|
||||||
++ [(import ./program.nix)]
|
++ [ (import ./program.nix) ]
|
||||||
++ [(import ./sshd.nix)]
|
++ [ (import ./sshd.nix) ]
|
||||||
++ [(import ./security.nix)]
|
++ [ (import ./security.nix) ]
|
||||||
++ [(import ./services.nix)]
|
++ [ (import ./services.nix) ]
|
||||||
++ [(import ./system.nix)]
|
++ [ (import ./system.nix) ]
|
||||||
++ [(import ./user.nix)];
|
++ [ (import ./user.nix) ]
|
||||||
|
++ [ (import ./virtualization.nix) ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue