blob: b59876a411d713961f5d9fcacead6b89c16f76cf (
plain)
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
52
53
54
55
56
57
|
{
systemState,
user,
}:
{
pkgs,
lib,
inputs,
config,
...
}:
{
imports = with inputs.self.homeModules; [
../common.nix
beeMods
programs
];
beeMods = {
windowManagers = {
niri.enable = true;
xwayland = false;
eyeCandy.enable = true;
eyeCandy = {
window = {
blur.enable = true;
blur.passes = 1;
blur.radius = 6;
opacity = 0.95;
borderRadius = 0;
shadows.enable = true;
};
};
beeConfig.enable = false;
noctalia = true;
};
matugen.enable = true;
terminal = {
default = "alacritty";
alacritty = true;
font.family = "monospace"; # change default font from ../../hosts/common.nix
font.size = 12.0;
};
};
home.username = user;
home.homeDirectory = "/home/${user}";
home.sessionVariables = {
EDITOR = "nvim";
TERMINAL = config.beeMods.terminal.default;
};
programs.home-manager.enable = true;
home.stateVersion = systemState; # check flake.nix
}
|