nix-config/home/default.nix

42 lines
643 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
2021-05-05 12:54:27 +02:00
./bluetooth.nix
./direnv.nix
./documentation.nix
2021-05-07 19:35:47 +02:00
./feh.nix
2021-04-05 13:55:42 +02:00
./firefox
2021-04-05 03:38:32 +02:00
./flameshot.nix
2021-04-05 17:57:05 +02:00
./gammastep.nix
2021-02-19 22:48:25 +01:00
./git
./gpg.nix
2021-05-09 01:01:36 +02:00
./gtk.nix
2021-02-21 19:33:38 +01:00
./htop.nix
2021-02-20 14:09:06 +01:00
./jq.nix
2021-05-15 21:20:28 +02:00
./mpv.nix
2021-05-10 18:02:42 +02:00
./nix-index.nix
2021-05-05 12:21:10 +02:00
./nm-applet.nix
2021-02-20 14:41:44 +01:00
./packages.nix
2021-02-20 14:12:57 +01:00
./pager.nix
2021-05-10 17:49:37 +02:00
./power-alert.nix
./secrets # Home-manager specific secrets
2021-02-20 16:25:55 +01:00
./ssh.nix
./terminal
2021-02-20 15:34:33 +01:00
./tmux.nix
2021-04-05 03:47:49 +02:00
./udiskie.nix
./vim
./wm
2021-04-02 20:46:45 +02:00
./x
2021-02-21 20:30:21 +01:00
./xdg.nix
2021-04-05 03:33:46 +02:00
./zathura.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-24 11:20:58 +01:00
# Who am I?
home.username = "ambroisie";
2021-02-18 22:27:08 +01:00
}