nix-config/modules/home/default.nix

59 lines
780 B
Nix
Raw Permalink Normal View History

2021-02-18 22:27:08 +01:00
{ ... }:
{
imports = [
./aliases
./atuin
2021-09-25 15:28:10 +02:00
./bat
2021-05-11 12:43:42 +02:00
./bitwarden
2021-09-25 15:28:10 +02:00
./bluetooth
./calibre
2021-09-25 15:28:10 +02:00
./comma
2023-04-26 21:49:21 +02:00
./dircolors
2021-09-25 15:28:10 +02:00
./direnv
2022-01-09 22:19:07 +01:00
./discord
2021-09-25 15:28:10 +02:00
./documentation
./feh
2021-04-05 13:55:42 +02:00
./firefox
2021-09-25 15:28:10 +02:00
./flameshot
2023-04-26 21:48:00 +02:00
./fzf
2021-09-25 15:28:10 +02:00
./gammastep
2021-08-20 20:03:30 +02:00
./gdb
2021-02-19 22:48:25 +01:00
./git
2021-09-25 15:28:10 +02:00
./gpg
./gtk
./htop
./jq
./keyboard
./mail
2021-09-25 15:28:10 +02:00
./mpv
./nix
2021-09-25 15:28:10 +02:00
./nix-index
2023-05-17 20:20:08 +02:00
./nixpkgs
2021-09-25 15:28:10 +02:00
./nm-applet
./packages
./pager
./power-alert
./secrets
2021-09-25 15:28:10 +02:00
./ssh
./terminal
2021-09-25 15:28:10 +02:00
./tmux
./udiskie
./vim
./wget
./wm
2021-04-02 20:46:45 +02:00
./x
2021-09-25 15:28:10 +02:00
./xdg
./zathura
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";
# Start services automatically
systemd.user.startServices = "sd-switch";
2021-02-18 22:27:08 +01:00
}