Non stop entertainment! The wackiest NixOS configuration to-date. thevoid.cafe/projects/puzzlevision
nixos flake flake-parts dotfiles home-manager nix

๐Ÿ”งโœ… Add profile config for cyn@absolutesolver and fix typo in assertion message

thevoid.cafe a90e6574 53fac618

verified
+14 -2
+13 -1
homes/x86_64-linux/cyn/default.nix
··· 1 - { pkgs, ... }: 1 + { 2 + pkgs, 3 + config, 4 + ... 5 + }: 2 6 { 7 + puzzlevision = { 8 + profile = { 9 + fullName = "Cyn"; 10 + email = "system@thevoid.cafe"; 11 + sshKeyFile = "${config.home.homeDirectory}/.ssh/id_ed25519"; 12 + }; 13 + }; 14 + 3 15 home.packages = with pkgs; [ 4 16 ### Tools 5 17 git
+1 -1
modules/home/profile/default.nix
··· 36 36 } 37 37 { 38 38 assertion = cfg.sshKeyFile != null; 39 - message = "${namespace}.profile.sshKey must be set!"; 39 + message = "${namespace}.profile.sshKeyFile must be set!"; 40 40 } 41 41 ]; 42 42 };