nixos-configs/modules/ags/default.nix

51 lines
1,003 B
Nix
Raw Normal View History

2023-11-30 17:17:34 -05:00
{
ags,
config,
pkgs,
...
}: let
inherit (config.vars) configDir mainUser;
2023-11-30 17:17:34 -05:00
isTouchscreen = config.hardware.sensor.iio.enable;
in {
services.upower.enable = true;
home-manager.users.${mainUser}.imports = [
2023-11-30 17:17:34 -05:00
ags.homeManagerModules.default
({
config,
lib,
...
}: let
symlink = config.lib.file.mkOutOfStoreSymlink;
optionals = lib.lists.optionals;
in {
programs.ags = {
enable = true;
configDir = symlink "${configDir}/ags";
2023-12-08 12:48:48 -05:00
package = ags.packages.${pkgs.system}.default;
2023-12-09 10:25:11 -05:00
extraPackages = with pkgs; [
libgudev
];
2023-11-30 17:17:34 -05:00
};
home.packages =
[config.customPkgs.coloryou]
++ (with pkgs; [
2023-11-30 17:17:34 -05:00
# ags
sassc
2024-01-13 11:15:08 -05:00
bun
2023-11-30 17:17:34 -05:00
playerctl
## gui
pavucontrol # TODO: replace with ags widget
])
++ (optionals isTouchscreen (with pkgs; [
2023-11-30 17:17:34 -05:00
lisgd
squeekboard
ydotool
]));
2023-11-30 17:17:34 -05:00
})
];
}