nixos/roles/home/common.nix

21 lines
312 B
Nix
Raw Normal View History

2022-10-11 20:33:07 +01:00
{ config, pkgs, ... }:
2021-10-14 12:53:44 +01:00
{
2023-09-21 23:41:53 +01:00
imports = [ ./fish.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
2023-03-19 19:23:48 +00:00
]
++ lib.optional (!stdenv.isDarwin) pastebinit;
2023-03-19 19:23:48 +00:00
2023-05-27 23:16:46 +01:00
stateVersion = "23.05";
};
}