Bruno BELANYI
f57cfda767
This is only the basic default configuration. The full configuration will come later. I am not a fan of `wm.windowManager`, I might rename that option at some point.
29 lines
414 B
Nix
29 lines
414 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./bat.nix
|
|
./direnv.nix
|
|
./documentation.nix
|
|
./git
|
|
./gpg.nix
|
|
./htop.nix
|
|
./jq.nix
|
|
./packages.nix
|
|
./pager.nix
|
|
./secrets # Home-manager specific secrets
|
|
./ssh.nix
|
|
./tmux.nix
|
|
./vim
|
|
./wm
|
|
./x
|
|
./xdg.nix
|
|
./zsh
|
|
];
|
|
|
|
# First sane reproducible version
|
|
home.stateVersion = "20.09";
|
|
|
|
# Who am I?
|
|
home.username = "ambroisie";
|
|
}
|