blob: 820b67c8182522e36909f550d1fc327a180cb7b8 (
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
40
41
|
{
pkgs,
config,
inputs,
username,
...
}:
{
imports = [
./fortune
inputs.tailray.homeManagerModules.default
];
programs.home-manager.enable = true;
nix.package = pkgs.nix;
pywal-nix.wallpaper = ./wallpaper.png;
home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "24.05";
sessionPath = [
"${config.home.homeDirectory}/.local/bin"
"${config.home.homeDirectory}/.local/share/cargo/bin"
"${config.xdg.configHome}/.emacs.d/bin"
];
};
nixpkgs = {
overlays = [ inputs.nur.overlay ];
config = {
allowUnfree = true;
# allowInsecure = true;
# allowBroken = true;
# allowUnfreePredicate = _: true;
};
};
}
|