blob: 9fa2b0da58e0c2e71b22d5780d92487a2ba8d21a (
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
31
32
33
34
35
36
37
38
39
|
{nixvim, ...}: {
imports = [
./bat
./direnv
./etesync-dav
#./eww
./flameshot
./foot
./git
./gpg
#./grades
./gtk
./hyfetch
./hyprland
./mako
./nixvim
./packages
#./river #TODO Update Shell Library
./rofi
./ssh
./sway
./swayidle
./swaylock
./swayosd
./xsession
#./yambar #TODO Update Shell Library
./waybar
./xdg
./zsh
nixvim.homeManagerModules.nixvim
];
home = {
username = "sils";
homeDirectory = "/home/sils";
stateVersion = "23.05";
};
programs.home-manager.enable = true;
}
|