Files
nix-config/outputs/aarch64-linux/tests/home-manager/expected.nix
T

17 lines
292 B
Nix

{
myvars,
lib,
}:
let
username = myvars.username;
hosts = [
"shoukei-niri"
];
in
lib.genAttrs hosts (_: {
homeDirectory = "/home/${username}";
hypridleScreenOffIgnoresInhibitors = true;
hypridleScreenOffSkipsPlayingMedia = true;
hypridleLockIgnoresInhibitors = true;
})