nixos/roles/home/common.nix

29 lines
371 B
Nix
Raw Normal View History

2023-09-23 18:33:18 +01:00
{ pkgs, ... }:
2021-10-14 12:53:44 +01:00
{
2023-09-23 18:33:18 +01:00
imports = [
./zsh.nix
./git.nix
./helix.nix
];
2021-10-14 12:53:44 +01:00
home = {
2023-03-19 19:23:48 +00:00
packages = with pkgs; [
rizin
sshfs
victor-mono
home-manager
ripgrep
2023-03-25 21:23:23 +00:00
ydiff
2023-06-01 20:09:04 +01:00
nix-index
pipenv
htop
glances
tree
2023-03-19 19:23:48 +00:00
]
2023-12-02 17:41:15 +00:00
++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
2023-03-19 19:23:48 +00:00
2024-06-01 11:41:26 +01:00
stateVersion = "24.05";
};
}