mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-04 14:12:38 -05:00
nixosModules: init apps.emudeck
Some checks failed
git-mirror / gitlab-sync (push) Has been cancelled
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
git-mirror / gitlab-sync (push) Has been cancelled
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
7dbd19707e
commit
74cf1d4105
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./emudeck
|
||||||
./firefox
|
./firefox
|
||||||
./nicotine-plus
|
./nicotine-plus
|
||||||
./steam
|
./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 = {
|
options.ar = {
|
||||||
apps = {
|
apps = {
|
||||||
|
emudeck.enable = lib.mkEnableOption "EmuDeck emulator manager.";
|
||||||
firefox.enable = lib.mkEnableOption "Firefox Web Browser.";
|
firefox.enable = lib.mkEnableOption "Firefox Web Browser.";
|
||||||
nicotine-plus.enable = lib.mkEnableOption "Nicotine+ Soulseek client.";
|
nicotine-plus.enable = lib.mkEnableOption "Nicotine+ Soulseek client.";
|
||||||
podman.enable = lib.mkEnableOption "Podman for OCI container support.";
|
podman.enable = lib.mkEnableOption "Podman for OCI container support.";
|
||||||
|
|
Loading…
Reference in a new issue