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

41 lines
819 B
Nix
Raw Normal View History

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-09-17 16:55:45 +00:00
fd
brightnessctl
swww
inputs.matugen.packages.${system}.default
slurp
wl-clipboard
wayshot
swappy
hyprpicker
pavucontrol
networkmanager
gtk3
2024-09-02 09:05:00 +00:00
];
#home.activation = {
# linkAgs = lib.hm.dag.entryAfter ["writeBoundary"] ''
# ln -sf ~/.config/nixos/modules/home-manager/ags/ags ~/.config/ags
# '';
#};
2024-08-30 21:52:18 +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
];
};
}