blob: d39d7853989f8eab657476055ff39ea86700bdea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{nixvim, ...}: {
imports = [
./direnv
#./eww
./git
./gpg
#./grades
./hyfetch
./hyprland
./mako
./nixvim
./packages
#./river #TODO Update Shell Library
./ssh
./swayidle
./swaylock
./xsession
#./yambar #TODO Update Shell Library
./waybar
./zsh
nixvim.homeManagerModules.nixvim
];
home = {
username = "sils";
homeDirectory = "/home/sils";
stateVersion = "23.05";
};
programs.home-manager.enable = true;
}
|