mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
10 lines
192 B
Nix
10 lines
192 B
Nix
{ wrappers, ... }:
|
|
{
|
|
imports = [ ./default.nix ];
|
|
|
|
home-manager.users.seb = {
|
|
home.packages = [ (wrappers.hypridle { lockOnSleep = true; }) ];
|
|
|
|
myConfig.de.theme = "light";
|
|
};
|
|
}
|