mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-04 14:12:38 -05:00
nixosModules: init apps.emudeck
Some checks failed
nix-build / adjustor-build (push) Has been cancelled
nix-build / clean-install-build (push) Has been cancelled
nix-build / emudeck-build (push) Has been cancelled
nix-build / hhd-ui-build (push) Has been cancelled
nix-build / rofi-bluetooth-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / pacifidlog-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
Some checks failed
nix-build / adjustor-build (push) Has been cancelled
nix-build / clean-install-build (push) Has been cancelled
nix-build / emudeck-build (push) Has been cancelled
nix-build / hhd-ui-build (push) Has been cancelled
nix-build / rofi-bluetooth-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / pacifidlog-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
This commit is contained in:
parent
056baf7f71
commit
29af7f672c
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./emudeck
|
||||
./firefox
|
||||
./nicotine-plus
|
||||
./steam
|
||||
|
|
15
nixosModules/apps/emudeck/default.nix
Normal file
15
nixosModules/apps/emudeck/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf (config.ar.apps.emudeck.enable) {
|
||||
environment.systemPackages = with pkgs; [emudeck];
|
||||
|
||||
ar = {
|
||||
apps.steam.enable = lib.mkDefault true;
|
||||
services.flatpak.enable = lib.mkDefault true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -5,6 +5,7 @@
|
|||
}: {
|
||||
options.ar = {
|
||||
apps = {
|
||||
emudeck.enable = lib.mkEnableOption "EmuDeck emulator manager.";
|
||||
firefox.enable = lib.mkEnableOption "Firefox Web Browser.";
|
||||
nicotine-plus.enable = lib.mkEnableOption "Nicotine+ Soulseek client.";
|
||||
podman.enable = lib.mkEnableOption "Podman for OCI container support.";
|
||||
|
|
Loading…
Reference in a new issue