2024-09-02 09:05:00 +00:00
|
|
|
{ inputs, pkgs, lib, ... }: {
|
2024-08-30 17:38:37 +00:00
|
|
|
# add the home manager module
|
|
|
|
imports = [ inputs.ags.homeManagerModules.default ];
|
|
|
|
|
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-13 16:40:36 +00:00
|
|
|
swww
|
2024-09-17 16:55:45 +00:00
|
|
|
fd
|
|
|
|
brightnessctl
|
|
|
|
slurp
|
|
|
|
wl-clipboard
|
|
|
|
swappy
|
|
|
|
hyprpicker
|
2024-10-13 16:40:36 +00:00
|
|
|
pwvucontrol
|
|
|
|
which
|
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-08-30 17:38:37 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|