170 current 2024-06-11 18:30:41 24.11.20240529.ad57eef 6.9.2-zen1 *

This commit is contained in:
sadan 2024-06-11 18:30:55 -04:00
parent d0f51716d5
commit 6abdf1d694
No known key found for this signature in database
2 changed files with 8 additions and 1 deletions

View file

@ -4,6 +4,9 @@
{ config, lib, pkgs, inputs, ... }: { config, lib, pkgs, inputs, ... }:
let
_v = import ../../common/programs/virt.nix {};
in
{ {
imports = imports =
[ [
@ -69,6 +72,8 @@
enable = true; enable = true;
}; };
}; };
services.printing.enable = true;
virtualisation = _v;
# Enable the X11 windowing system. # Enable the X11 windowing system.
# servives.desktopManager.plasma6.enable = true; # servives.desktopManager.plasma6.enable = true;
# services.desktopManager.plasma6.enable = true; # services.desktopManager.plasma6.enable = true;
@ -80,7 +85,6 @@
# services.xserver.xkb.options = "eurosign:e,caps:escape"; # services.xserver.xkb.options = "eurosign:e,caps:escape";
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enable sound. # Enable sound.
sound.enable = true; sound.enable = true;

3
common/programs/virt.nix Normal file
View file

@ -0,0 +1,3 @@
{} : {
libvirtd.enable = true;
}