36 lines
587 B
Nix
36 lines
587 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./git.nix
|
|
./ssh.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.username = "moritz";
|
|
home.homeDirectory = "/home/moritz";
|
|
|
|
home.packages = with pkgs; [
|
|
bottom
|
|
btop
|
|
fd # Find alternative
|
|
fzf # Fuzzy search
|
|
htop
|
|
jq
|
|
libqalculate
|
|
nil # Nix-config linter
|
|
nixd # Nix-config linter
|
|
openssl
|
|
ripgrep
|
|
tree
|
|
wget
|
|
xxd
|
|
yq
|
|
];
|
|
|
|
home.shellAliases = {
|
|
update = "sudo nixos-rebuild switch";
|
|
updateBoot = "sudo nixos-rebuild boot";
|
|
updateTest = "sudo nixos-rebuild test";
|
|
};
|
|
}
|