-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
47 lines (39 loc) · 810 Bytes
/
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
{
pkgs,
inputs,
...
}: {
imports = [
./hm-modules/default.nix
];
home.username = "asherah";
home.homeDirectory = "/home/asherah";
home.packages = let
nerdfonts = pkgs.nerdfonts.override {
fonts = [
"FiraCode"
];
};
in [nerdfonts];
home.file = {
};
home.sessionVariables = {
EDITOR = "nvim";
NIXPKGS_ALLOW_UNFREE = "1";
NIXPKGS_ALLOW_INSECURE = "1";
NIXOS_OZONE_WL = "1"; # for electron apps to use wayland
TERMINAL = "wezterm";
VISUAL = "nvim";
};
/*
services.gammastep = {
enable = true;
dawnTime = "08:00";
duskTime = "08:00";
};
*/
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
#home.enableNixpkgsReleaseCheck = false;
home.stateVersion = "24.11";
}