mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
10 lines
163 B
Nix
10 lines
163 B
Nix
{ wrappers, ... }:
|
|
{
|
|
imports = [ ./default.nix ];
|
|
|
|
home-manager.users.seb = {
|
|
home.packages = [ wrappers.hyprlock ];
|
|
|
|
myConfig.theme = "light";
|
|
};
|
|
}
|