a dotfile but it's really big

reg: remove helix

+3 -11
+3 -11
systems/reg/default.nix
··· 1 - { 2 - config, 3 - pkgs, 4 - inputs, 5 - ... 6 - }: 1 + { config, inputs, ... }: 7 2 { 8 3 my.username = "root"; 9 4 ··· 17 12 boot.tmp.cleanOnBoot = true; 18 13 zramSwap.enable = true; 19 14 sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; 15 + 20 16 services.atuin = { 21 17 enable = true; 22 18 host = "0.0.0.0"; 23 19 }; 24 20 25 - users.users = { 26 - ${config.my.username}.openssh.authorizedKeys.keyFiles = [ inputs.ssh-keys ]; 27 - }; 28 - 29 - environment.systemPackages = with pkgs; [ helix ]; 21 + users.users.${config.my.username}.openssh.authorizedKeys.keyFiles = [ inputs.ssh-keys ]; 30 22 31 23 system.stateVersion = "25.05"; 32 24 }