fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
20 lines
318 B
Nix
20 lines
318 B
Nix
{ pkgs
|
|
, config
|
|
, ...
|
|
}: {
|
|
config = {
|
|
home.file = {
|
|
"${config.xdg.configHome}/ags" = {
|
|
source = ./config;
|
|
};
|
|
};
|
|
home.packages = with pkgs; [
|
|
ags
|
|
brightnessctl
|
|
];
|
|
myAutostartCommands = [
|
|
#"${pkgs.ags}/bin/ags --init"
|
|
"${pkgs.ags}/bin/ags"
|
|
];
|
|
};
|
|
}
|