summaryrefslogtreecommitdiff
path: root/modules/hosts
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-07-17 14:48:37 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-07-17 14:48:37 -0500
commit14aac8dec3ffb61215c9c485b742d14c6266aac3 (patch)
tree3974e4625e5e32774c4275db9b99acddc8e33c36 /modules/hosts
parent2044ba53df2a440e574b7aa7f9f19d430a0a750f (diff)
downloadnixos-14aac8dec3ffb61215c9c485b742d14c6266aac3.tar.xz
nixos-14aac8dec3ffb61215c9c485b742d14c6266aac3.zip
virtualization with virt-manager
Diffstat (limited to 'modules/hosts')
-rw-r--r--modules/hosts/hp-envy-office/configuration.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/hosts/hp-envy-office/configuration.nix b/modules/hosts/hp-envy-office/configuration.nix
index fdff4f0..9b3e173 100644
--- a/modules/hosts/hp-envy-office/configuration.nix
+++ b/modules/hosts/hp-envy-office/configuration.nix
@@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
+ # Show bootloader for longer since it usually doesn't show
+ boot.loader.timeout = 15;
+
# Enable extra software pkgs
software.desktop = {
chromium.enable = true;
@@ -14,6 +17,9 @@
docker.enable = true;
};
+ # Enable virtualization
+ virtualization.enable = true;
+
# Enable network drives
nas.enable = true;
nas.office.enable = true;