diff --git a/modules/system/secure_boot/default.nix b/modules/system/secure_boot/default.nix index b15aa30..7352137 100644 --- a/modules/system/secure_boot/default.nix +++ b/modules/system/secure_boot/default.nix @@ -24,7 +24,7 @@ in { boot.loader.systemd-boot.enable = lib.mkForce false; /* - this uses the project lanzaboote for secureboot (fork of systemd) + this uses the project lanzaboote for secureboot (extension on systemd) setup guide can be found here: https://github.com/nix-community/lanzaboote/blob/master/docs/QUICK_START.md tldr: while currently using systemd-boot diff --git a/users/blake/dots/core/lf/lfrc b/users/blake/dots/core/lf/lfrc index 57d2f25..b5e9bcf 100644 --- a/users/blake/dots/core/lf/lfrc +++ b/users/blake/dots/core/lf/lfrc @@ -24,6 +24,7 @@ set ignorecase true # shortcuts map gb cd /holocron map gn cd ~/.nix +map gc cd ~/.config # navigation map [ half-up diff --git a/users/blake/dots/core/ssh/default.nix b/users/blake/dots/core/ssh/default.nix index 79417f9..bfc7c7b 100644 --- a/users/blake/dots/core/ssh/default.nix +++ b/users/blake/dots/core/ssh/default.nix @@ -45,6 +45,14 @@ in { mode = "644"; path = "${home_dir}/.ssh/id_snowbelle.pub"; }; + "id_blake" = { + mode = "0600"; + path = "${home_dir}/.ssh/id_blake"; + }; + "id_blake.pub" = { + mode = "644"; + path = "${home_dir}/.ssh/id_blake.pub"; + }; }; }; }