This commit is contained in:
2025-08-04 15:32:54 +02:00
parent 6e381f0b99
commit 3ae535f1b1
7 changed files with 103 additions and 114 deletions

View File

@@ -5,8 +5,6 @@
...
}:
# Original source: https://gist.github.com/antifuchs/10138c4d838a63c0a05e725ccd7bccdd
with lib;
let
cfg = config.local.dock;

View File

@@ -20,7 +20,8 @@ in
name = "${user}";
home = "/Users/${user}";
isHidden = false;
shell = pkgs.zsh;
shell = pkgs.fish;
ignoreShellProgramCheck = true;
};
homebrew = {

View File

@@ -8,4 +8,5 @@ shared-packages
_1password-gui
dockutil
raycast
neovim
]

View File

@@ -13,33 +13,4 @@ in
age.identityPaths = [
"/Users/${user}/.ssh/id_ed25519"
];
# Your secrets go here
#
# Note: the installWithSecrets command you ran to boostrap the machine actually copies over
# a Github key pair. However, if you want to store the keypair in your nix-secrets repo
# instead, you can reference the age files and specify the symlink path here. Then add your
# public key in shared/files.nix.
#
# If you change the key name, you'll need to update the SSH configuration in shared/home-manager.nix
# so Github reads it correctly.
#
# age.secrets."github-ssh-key" = {
# symlink = true;
# path = "/Users/${user}/.ssh/id_github";
# file = "${secrets}/github-ssh-key.age";
# mode = "600";
# owner = "${user}";
# group = "staff";
# };
# age.secrets."github-signing-key" = {
# symlink = false;
# path = "/Users/${user}/.ssh/pgp_github.key";
# file = "${secrets}/github-signing-key.age";
# mode = "600";
# owner = "${user}";
# };
}