mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 16:44:30 -05:00
Added Appimage and virt-manager
This commit is contained in:
parent
93edbaf48d
commit
e0c1ea8d62
5 changed files with 23 additions and 2 deletions
16
modules/common/utilities/appimage.nix
Normal file
16
modules/common/utilities/appimage.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./appimage.nix
|
||||
./docker.nix
|
||||
./git.nix
|
||||
./kdeconnect.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue