- move essential CLI tools into the minimal package set - remove duplicated packages from the full programs profile - add the portal-1 SSH host on port 278
28 lines
417 B
Nix
28 lines
417 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./cli
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
};
|
|
|
|
home = {
|
|
username = "richie";
|
|
homeDirectory = "/home/${config.home.username}";
|
|
stateVersion = "24.05";
|
|
sessionVariables.FLAKE = "$HOME/dotfiles";
|
|
packages = with pkgs; [
|
|
# cli
|
|
btop
|
|
eza
|
|
ripgrep
|
|
starship
|
|
tmux
|
|
# networking
|
|
wget
|
|
];
|
|
};
|
|
}
|