2022-01-10 09:30:48 +00:00
|
|
|
{ pkgs, config, ... }: {
|
2021-12-16 13:09:26 +00:00
|
|
|
imports = [
|
|
|
|
./packages.nix
|
2021-12-17 11:07:04 +00:00
|
|
|
./gnupg.nix
|
2021-12-17 11:30:51 +00:00
|
|
|
./variables.nix
|
2022-01-10 09:30:48 +00:00
|
|
|
./starship.nix
|
2022-01-21 09:35:52 +00:00
|
|
|
./i3status.nix
|
|
|
|
./emacs.nix
|
2022-01-25 09:01:16 +00:00
|
|
|
./mails.nix
|
2022-03-29 11:47:21 +00:00
|
|
|
./dunst.nix
|
2022-09-28 14:33:03 +00:00
|
|
|
./bat.nix
|
2022-08-05 12:16:06 +00:00
|
|
|
# ./redshift.nix
|
2023-07-29 09:56:49 +00:00
|
|
|
../../../modules/neovim.nix
|
2022-08-05 12:16:06 +00:00
|
|
|
../../../modules/rust.nix
|
2023-01-08 13:22:17 +00:00
|
|
|
../../../modules/tmux.nix
|
2023-07-23 09:53:56 +00:00
|
|
|
../../../modules/git.nix
|
2021-12-16 13:09:26 +00:00
|
|
|
];
|
|
|
|
home.keyboard = {
|
|
|
|
layout = "fr";
|
|
|
|
variant = "bepo";
|
|
|
|
};
|
2022-01-21 10:10:40 +00:00
|
|
|
xdg.configFile = {
|
|
|
|
"i3/config".source = ./configs/i3config;
|
|
|
|
};
|
2023-07-23 09:02:54 +00:00
|
|
|
# xdg.configFile = {
|
|
|
|
# "Nextcloud/nextcloud.cfg".source = ./configs/nextcloud.cfg;
|
|
|
|
# };
|
2022-05-24 18:57:18 +00:00
|
|
|
xsession.numlock.enable = true;
|
2022-09-29 07:16:47 +00:00
|
|
|
home.file = {
|
2022-10-14 08:38:14 +00:00
|
|
|
"./.config/zellij/config.yaml" = {
|
|
|
|
source = ./configs/zellij;
|
2022-09-29 07:16:47 +00:00
|
|
|
};
|
|
|
|
};
|
2023-07-27 08:16:34 +00:00
|
|
|
home.sessionPath = [
|
|
|
|
"$HOME/.local/bin"
|
|
|
|
];
|
2021-12-16 13:09:26 +00:00
|
|
|
}
|
2022-09-07 11:50:01 +00:00
|
|
|
|