aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/default.nix
blob: 1011e72cbdaab6741a62fb8edde95e81602ef1f8 (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
{nixneovim, ...}: {
  imports = [
    ./direnv
    ./git
    ./gpg
    #./grades
    ./hyfetch
    ./mako
    ./nixneovim
    ./packages
    #./river #TODO Update Shell Library
    ./ssh
    ./swaylock
    ./xsession
    #./yambar #TODO Update Shell Library
    ./zsh
    nixneovim.nixosModules.default
  ];

  home = {
    username = "sils";
    homeDirectory = "/home/sils";
    stateVersion = "23.05";
  };
  programs.home-manager.enable = true;
}