mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-09-09 19:41:46 +02:00
17 lines
292 B
Nix
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;
|
|
})
|