Added Appimage and virt-manager

This commit is contained in:
Annika Merris 2024-08-28 11:08:02 -04:00
parent 93edbaf48d
commit e0c1ea8d62
5 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
{
options = {
appimage = {
enable = lib.mkEnableOption {
description = "Install appimage-run";
default = false;
};
};
};
config = lib.mkIf (config.gui.enable && config.appimage.enable) {
environment.systemPackages = [
pkgs.appimage-run
];
};
}

View file

@ -1,6 +1,7 @@
{ ... }:
{
imports = [
./appimage.nix
./docker.nix
./git.nix
./kdeconnect.nix