nixos-configs/nixosModules/ags/default.nix
matt1432 ce6d31e658
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags osk): add input detection
2024-12-14 19:36:54 -05:00

77 lines
1.7 KiB
Nix

self: {
config,
lib,
pkgs,
...
}: let
inherit (self.inputs) virtualkeyboard-adapter;
inherit (lib) hasPrefix mkIf removePrefix;
# Configs
cfgDesktop = config.roles.desktop;
flakeDir = config.environment.variables.FLAKE;
agsConfigDir = "${removePrefix "/home/${cfgDesktop.user}/" flakeDir}/nixosModules/ags/config";
hmOpts = {lib, ...}: {
options.programs.ags = {
package = lib.mkOption {
type = with lib.types; nullOr package;
default = null;
};
astalLibs = lib.mkOption {
type = with lib.types; nullOr (listOf package);
default = null;
};
lockPkg = lib.mkOption {
type = with lib.types; nullOr package;
default = null;
};
configDir = lib.mkOption {
type = lib.types.str;
default = agsConfigDir;
};
};
};
in {
config = mkIf cfgDesktop.ags.enable {
assertions = [
{
assertion = hasPrefix "/home/${cfgDesktop.user}/" flakeDir;
message = ''
Your $FLAKE environment variable needs to point to a directory in
the main users' home to use the AGS module.
'';
}
];
# Machine config
security.pam.services.astal-auth = {};
services.upower.enable = true;
i18n.inputMethod = mkIf cfgDesktop.isTouchscreen {
enable = true;
type = "fcitx5";
fcitx5 = {
waylandFrontend = true;
plasma6Support = true;
addons = [
virtualkeyboard-adapter.packages.${pkgs.system}.default
];
};
};
home-manager.users.${cfgDesktop.user}.imports = [
hmOpts
(import ./packages.nix self)
(import ./hyprland.nix self)
];
};
# For accurate stack trace
_file = ./default.nix;
}