diff --git a/systems/programs.nix b/systems/programs.nix index 102d1a0..6083bed 100644 --- a/systems/programs.nix +++ b/systems/programs.nix @@ -23,6 +23,7 @@ python3 qrencode ripgrep + smartmontools speedtest-cli tig tokei diff --git a/users/alice/default.nix b/users/alice/default.nix index f75a58c..8cced34 100644 --- a/users/alice/default.nix +++ b/users/alice/default.nix @@ -2,6 +2,13 @@ import ../default.nix { inherit pkgs lib config name; publicKeys = [ + # photon "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOGcqhLaKsjwAnb6plDavAhEyQHNvFS9Uh5lMTuwMhGF alice@parthenon-7588" + # gh + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGoaEmzaS9vANckvBmqrYSHdFR0sPL4Xgeonbh9KcgFe gitlab keypair" + # janus + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfcO9p5opG8Tym6tcLkat6YGCcE6vwg0+V4MTC5WKop alice@parthenon-7588" + # palatine + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP59pDsx34k2ikrKa0eVacj0APSGivaij3lP9L0Zd9au alice@parthenon-7588" ]; } diff --git a/users/alice/home.nix b/users/alice/home.nix index 7fa7299..007e707 100644 --- a/users/alice/home.nix +++ b/users/alice/home.nix @@ -5,6 +5,25 @@ home.homeDirectory = "/home/alice"; home.packages = with pkgs; [ + # # Adds the 'hello' command to your environment. It prints a friendly + # # "Hello, world!" when run. + # pkgs.hello + + # # It is sometimes useful to fine-tune packages, for example, by applying + # # overrides. You can do that directly here, just don't forget the + # # parentheses. Maybe you want to install Nerd Fonts with a limited number of + # # fonts? + # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) + + # # You can also create simple shell scripts directly inside your + # # configuration. For example, this adds a command 'my-hello' to your + # # environment: + # (pkgs.writeShellScriptBin "my-hello" '' + # echo "Hello, ${config.home.username}!" + # '') + + ncdu + # Rust packages topgrade trunk @@ -15,7 +34,6 @@ cargo-audit cargo-update diesel-cli - # gitoxide currently broke 09182023 gitoxide tealdeer helix @@ -33,7 +51,15 @@ clang ]; - programs.zsh.enable = true; + programs = { + zsh.enable = true; + + starship.enable = true; + fzf = { + enable = true; + enableZshIntegration = true; + }; + }; home.stateVersion = "23.11"; }