13 lines
260 B
Nix
13 lines
260 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home.packages = with pkgs; [
|
|
unstable.hypridle
|
|
];
|
|
xdg.configFile = {
|
|
"hypr/hypridle.conf" = {
|
|
source = config.lib.file.mkOutOfStoreSymlink ./. + "/hypridle.conf";
|
|
target = "hypr/hypridle.conf";
|
|
};
|
|
};
|
|
}
|