20 lines
295 B
Nix
20 lines
295 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./zsh.nix ./git.nix ./helix.nix ];
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
rizin
|
|
sshfs
|
|
victor-mono
|
|
home-manager
|
|
ripgrep
|
|
ydiff
|
|
]
|
|
++ lib.optional (!stdenv.isDarwin) pastebinit;
|
|
|
|
stateVersion = "22.11";
|
|
};
|
|
}
|