nyx/modules/home-manager/ags/default.nix

40 lines
642 B
Nix
Raw Normal View History

2024-12-20 13:11:42 +00:00
{
inputs,
pkgs,
lib,
...
}: {
2024-08-30 17:38:37 +00:00
# add the home manager module
2024-12-20 13:11:42 +00:00
imports = [inputs.ags.homeManagerModules.default];
2024-08-30 17:38:37 +00:00
2024-09-02 09:05:00 +00:00
home.packages = with pkgs; [
2024-09-17 16:55:45 +00:00
bun
2024-09-02 09:05:00 +00:00
dart-sass
2024-10-20 14:23:00 +00:00
sassc
swww
2024-09-17 16:55:45 +00:00
fd
brightnessctl
slurp
wl-clipboard
swappy
hyprpicker
pwvucontrol
which
2024-11-16 22:07:01 +00:00
python312Packages.gpustat
2024-09-02 09:05:00 +00:00
];
2024-08-30 17:38:37 +00:00
programs.ags = {
enable = true;
# null or path, leave as null if you don't want hm to manage the config
# configDir = ../ags;
2024-09-02 09:05:00 +00:00
configDir = null;
2024-08-30 17:38:37 +00:00
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
2024-09-17 16:55:45 +00:00
accountsservice
2024-11-16 22:07:01 +00:00
gtk-session-lock
2024-08-30 17:38:37 +00:00
];
};
}