2024-12-20 15:11:42 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2024-08-30 20:38:37 +03:00
|
|
|
# add the home manager module
|
2024-12-20 15:11:42 +02:00
|
|
|
imports = [inputs.ags.homeManagerModules.default];
|
2024-08-30 20:38:37 +03:00
|
|
|
|
2024-09-02 12:05:00 +03:00
|
|
|
home.packages = with pkgs; [
|
2024-09-17 19:55:45 +03:00
|
|
|
bun
|
2024-09-02 12:05:00 +03:00
|
|
|
dart-sass
|
2024-10-20 17:23:00 +03:00
|
|
|
sassc
|
2024-10-13 19:40:36 +03:00
|
|
|
swww
|
2024-09-17 19:55:45 +03:00
|
|
|
fd
|
|
|
|
brightnessctl
|
|
|
|
slurp
|
|
|
|
wl-clipboard
|
|
|
|
swappy
|
|
|
|
hyprpicker
|
2024-10-13 19:40:36 +03:00
|
|
|
pwvucontrol
|
|
|
|
which
|
2024-11-17 00:07:01 +02:00
|
|
|
python312Packages.gpustat
|
2024-09-02 12:05:00 +03:00
|
|
|
];
|
|
|
|
|
2024-08-30 20:38:37 +03: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 12:05:00 +03:00
|
|
|
configDir = null;
|
2024-08-30 20:38:37 +03:00
|
|
|
|
|
|
|
# additional packages to add to gjs's runtime
|
|
|
|
extraPackages = with pkgs; [
|
2024-09-17 19:55:45 +03:00
|
|
|
accountsservice
|
2024-11-17 00:07:01 +02:00
|
|
|
gtk-session-lock
|
2024-08-30 20:38:37 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|