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

35 lines
636 B
Nix
Raw Normal View History

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