nixos/roles/home/common.nix
2022-12-01 14:21:40 +01:00

11 lines
190 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./zsh.nix ./git.nix ./helix.nix ];
home = {
packages = with pkgs; [ rizin sshfs victor-mono home-manager ];
stateVersion = "22.11";
};
}