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