diff --git a/modules/features/home/bash.nix b/modules/features/home/bash.nix index a826f42..1d6f06e 100644 --- a/modules/features/home/bash.nix +++ b/modules/features/home/bash.nix @@ -9,9 +9,10 @@ logout = "pkill -KILL -u $USER"; nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; - wss = "waydroid session stop; exit;"; flake-upgrade = "nix flake update"; spf = "superfile"; + } // lib.mkIf osconfig.virtualisation.waydroid.enable { + wss = "waydroid session stop; exit;"; }; shellOptions = [ diff --git a/modules/features/system/dconf.nix b/modules/features/system/dconf.nix new file mode 100644 index 0000000..5458734 --- /dev/null +++ b/modules/features/system/dconf.nix @@ -0,0 +1,3 @@ +{ ... }: { + programs.dconf.enable = true; +} \ No newline at end of file diff --git a/modules/features/system/waydroid.nix b/modules/features/system/waydroid.nix index 3c3f460..c48a046 100644 --- a/modules/features/system/waydroid.nix +++ b/modules/features/system/waydroid.nix @@ -4,7 +4,7 @@ package = pkgs.waydroid-nftables; }; - environment.systemPackages = lib.mkOptionals config.virtualisation.waydroid.enable [ - waydroid-helper + environment.systemPackages = lib.optionals config.virtualisation.waydroid.enable [ + pkgs.waydroid-helper ]; } \ No newline at end of file