forked from O-Huo/nixhome
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhome.nix
More file actions
30 lines (30 loc) · 743 Bytes
/
Copy pathhome.nix
File metadata and controls
30 lines (30 loc) · 743 Bytes
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
{
lib,
pkgs,
...
}:
{
imports = [
./shell
./programs/programs.nix
];
home = {
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you
# do want to update the value, then make sure to first check the Home
# Manager release notes.
stateVersion = "24.11"; # Please read the comment before changing.
};
catppuccin = {
enable = true;
flavor = "latte";
cursors = {
enable = pkgs.stdenv.isLinux;
flavor = "latte";
accent = "sky";
};
};
}