Fixed Option

This commit is contained in:
2026-04-05 22:02:27 +02:00
parent 8f9d6204ee
commit eee7f44ab7
3 changed files with 4 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
./packages.nix
./git.nix
./shell.nix
./ssh.nix
./xdg.nix
./neovim
./python.nix

View File

@@ -1,8 +1,9 @@
{ primaryUser, isDarwin, ... }:
{
ssh = {
programs.ssh = {
enable = true;
matchBlock = {
addKeysToAgent = "yes";
matchBlocks = {
"*.cyperpunk.de" = {
identityFile =
if isDarwin then "/Users/${primaryUser}/.ssh/ssh" else "/home/${primaryUser}/.ssh/ssh";

View File

@@ -107,7 +107,6 @@
home = "/home/${primaryUser}";
shell = pkgs.fish;
isNormalUser = true;
openssh.authorizedKeys.keyFiles = [ ../secrets/ssh-key ];
extraGroups = [
"wheel"
"video"