2022-10-11 20:33:07 +01:00
|
|
|
{ config, pkgs, ... }:
|
2021-10-14 12:53:44 +01:00
|
|
|
|
|
|
|
{
|
2022-11-07 16:31:44 +00:00
|
|
|
imports = [ ./zsh.nix ./git.nix ./helix.nix ];
|
2021-10-14 12:53:44 +01:00
|
|
|
|
2022-12-01 13:21:40 +00:00
|
|
|
home = {
|
2023-03-19 19:23:48 +00:00
|
|
|
packages = with pkgs; [
|
|
|
|
rizin
|
|
|
|
sshfs
|
|
|
|
victor-mono
|
|
|
|
home-manager
|
|
|
|
ripgrep
|
|
|
|
]
|
2023-03-25 17:24:53 +00:00
|
|
|
++ lib.optional (!stdenv.isDarwin) pastebinit;
|
2023-03-19 19:23:48 +00:00
|
|
|
|
2022-12-01 13:21:40 +00:00
|
|
|
stateVersion = "22.11";
|
|
|
|
};
|
2021-06-27 15:40:34 +01:00
|
|
|
}
|