-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.nix
51 lines (43 loc) · 1.12 KB
/
home.nix
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
40
41
42
43
44
45
46
47
48
49
50
51
{ config, pkgs, ... }:
{
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
nixpkgs.config.allowUnfree = true;
home = {
username = "jeet";
homeDirectory = "/home/jeet";
# TODO move this out of here
packages = with pkgs; [ gimp ];
stateVersion = "21.05";
};
imports = [
# modules/gtk.nix # I would rather have my de handle this
# modules/keyboard.nix
modules/devel/git.nix
modules/devel/latex.nix
modules/devel/shell.nix
modules/editors/neovim.nix
modules/editors/emacs.nix
modules/languages/cc.nix
modules/languages/haskell.nix
# modules/languages/python.nix
modules/languages/racket.nix
modules/languages/ruby.nix
modules/chat.nix
modules/cli.nix
modules/direnv.nix
modules/email.nix
modules/fun.nix
modules/misc.nix
modules/nix.nix
modules/terminal.nix
modules/tilingwm.nix
modules/web.nix
];
# autoOptimiseStore = true;
# gc.automatic = true;
# gc.dates = "weekly";
# gc.options = "--delete-older-than 7d";
# optimise.automatic = true;
# optimise.dates = [ "weekly" ];
}