tangled
alpha
login
or
join now
karitham.dev
/
dotfiles
0
fork
atom
nix all the things
0
fork
atom
overview
issues
pulls
pipelines
desktop/noctalia: more theming
karitham.dev
1 month ago
2a5f7dc8
77e5175e
verified
This commit was signed with the committer's
known signature
.
karitham.dev
SSH Key Fingerprint:
SHA256:ODeRMGYuG7M/0G+fRF6IfwUk7r5AgG5MYdFTN+uvimc=
+13
-2
2 changed files
expand all
collapse all
unified
split
modules
desktop
wm
niri.nix
noctalia.nix
+4
-2
modules/desktop/wm/niri.nix
···
20
20
21
21
screenshot-path = null;
22
22
prefer-no-csd = true;
23
23
+
hotkey-overlay = {
24
24
+
skip-at-startup = true;
25
25
+
hide-not-bound = true;
26
26
+
};
23
27
24
28
input = {
25
29
focus-follows-mouse = {
···
47
51
click-method = "clickfinger";
48
52
};
49
53
};
50
50
-
51
51
-
spawn-at-startup = [ ];
52
54
53
55
layout = {
54
56
gaps = 16;
+9
modules/desktop/wm/noctalia.nix
···
8
8
imports = [ inputs.noctalia.homeModules.default ];
9
9
10
10
config = lib.mkIf config.desktop.noctalia.enable {
11
11
+
qt = {
12
12
+
enable = true;
13
13
+
style.name = "kvantum";
14
14
+
};
15
15
+
16
16
+
home.file.".cache/noctalia/wallpapers.json" = {
17
17
+
text = builtins.toJSON { defaultWallpaper = config.desktop.wallpaper.image; };
18
18
+
};
19
19
+
11
20
programs.niri.settings = {
12
21
spawn-at-startup = [ { command = [ (lib.getExe config.programs.noctalia-shell.package) ]; } ];
13
22