config-perso/modules/default.nix

16 lines
215 B
Nix
Raw Normal View History

2024-03-17 11:31:42 +01:00
let
sway = import ./desktop/sway.nix;
2024-05-14 19:21:19 +02:00
in
{
2024-03-17 11:31:42 +01:00
home = {
sway = sway.home;
neovim = ./neovim;
zsh = ./zsh.nix;
ssh = ./ssh.nix;
2024-03-22 14:24:31 +01:00
mail = ./mail.nix;
2024-03-17 11:31:42 +01:00
};
global = {
sway = sway.global;
};
2024-03-12 17:26:16 +01:00
}