Manage github ssh-keys with sops

This commit is contained in:
SebastianStork 2024-07-05 15:04:57 +02:00
parent c1cba95e02
commit ae4a2e5b72
10 changed files with 92 additions and 11 deletions

View file

@ -0,0 +1,20 @@
{ wrappers, ... }:
{
imports = [ ../default.nix ];
home-manager.users.seb = {
home.stateVersion = "23.11";
myConfig = {
theme = "light";
sops.enable = true;
};
home.packages = [ wrappers.hyprlock ];
wayland.windowManager.hyprland.settings.monitor = [
"eDP-1,1920x1080@60,0x0,1"
",preferred,auto,1,mirror,eDP-1"
];
};
}