nix-config/home/default.nix

24 lines
351 B
Nix
Raw Normal View History

2021-02-18 22:27:08 +01:00
{ ... }:
{
imports = [
2021-02-20 15:13:37 +01:00
./bat.nix
./direnv.nix
./documentation.nix
2021-02-19 22:48:25 +01:00
./git
./gpg.nix
2021-02-21 19:33:38 +01:00
./htop.nix
2021-02-20 14:09:06 +01:00
./jq.nix
2021-02-20 14:41:44 +01:00
./packages.nix
2021-02-20 14:12:57 +01:00
./pager.nix
./secrets # Home-manager specific secrets
2021-02-20 16:25:55 +01:00
./ssh.nix
2021-02-20 15:34:33 +01:00
./tmux.nix
./vim
2021-02-21 20:30:21 +01:00
./xdg.nix
2021-02-19 20:39:36 +01:00
./zsh
2021-02-18 22:27:08 +01:00
];
2021-02-24 11:15:16 +01:00
# First sane reproducible version
home.stateVersion = "20.09";
2021-02-18 22:27:08 +01:00
}