configure sway
This commit is contained in:
parent
61ecbd9721
commit
f9138672e8
17 changed files with 322 additions and 25 deletions
17
programs/qemuGuest.nix
Normal file
17
programs/qemuGuest.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkEnableOption;
|
||||
cfg = config.modules.vmGuest;
|
||||
in
|
||||
|
||||
{
|
||||
options.modules.vmGuest.enable = mkEnableOption "Enable VM Guest addons";
|
||||
|
||||
config = {
|
||||
services = {
|
||||
qemuGuest.enable = cfg.enable;
|
||||
spice-vdagentd.enable = cfg.enable;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue