nixos/roles/home/common.nix

11 lines
209 B
Nix
Raw Normal View History

2022-10-11 20:33:07 +01:00
{ config, pkgs, ... }:
2021-10-14 12:53:44 +01:00
{
imports = [ ./zsh.nix ./git.nix ./helix.nix ];
2021-10-14 12:53:44 +01:00
home = {
packages = with pkgs; [ rizin sshfs victor-mono home-manager ripgrep pastebinit ];
stateVersion = "22.11";
};
}