add desktop platform
This commit is contained in:
parent
a598918c63
commit
f07257ab6d
28 changed files with 1604 additions and 0 deletions
16
home/platforms/fabian@posixlycorrect/apps/virtmanager.nix
Normal file
16
home/platforms/fabian@posixlycorrect/apps/virtmanager.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.apps.virtmanager;
|
||||
in {
|
||||
options.local.apps.virtmanager.enable = mkEnableOption "Virtmanager";
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
virt-manager
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue