alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
move noctalia to its own aspect
author
Sean Aye
date
1 week ago
(Jun 16, 2026, 3:18 PM -0400)
commit
eb881f98
eb881f98d12a0da60427000706fd6029382f1dc0
parent
0d95cc9d
0d95cc9db0a6b90ece90bdb4cdf7b656261dcc75
change-id
qmuxnlyv
qmuxnlyvnpyqyyrkknxrlvtkvmsxutrq
+236
-227
5 changed files
Expand all
Collapse all
Unified
Split
modules
desktop.nix
hosts
framework16.nix
ideapad5.nix
mira.nix
noctalia.nix
-224
modules/desktop.nix
Reviewed
···
378
378
};
379
379
};
380
380
381
381
-
programs.noctalia = {
382
382
-
enable = true;
383
383
-
systemd.enable = true;
384
384
-
settings = {
385
385
-
bar.default = {
386
386
-
auto_hide = true;
387
387
-
center = [
388
388
-
"clock"
389
389
-
"weather"
390
390
-
];
391
391
-
end = [
392
392
-
"media"
393
393
-
"notifications"
394
394
-
"clipboard"
395
395
-
"network"
396
396
-
"bluetooth"
397
397
-
"volume"
398
398
-
"battery"
399
399
-
"control-center"
400
400
-
"tray"
401
401
-
"session"
402
402
-
];
403
403
-
margin_edge = 0;
404
404
-
reserve_space = false;
405
405
-
start = [
406
406
-
"wallpaper"
407
407
-
"workspaces"
408
408
-
];
409
409
-
widget_spacing = 12;
410
410
-
};
411
411
-
412
412
-
location.auto_locate = true;
413
413
-
414
414
-
lockscreen = {
415
415
-
allow_empty_password = true;
416
416
-
blurred_desktop = true;
417
417
-
};
418
418
-
419
419
-
lockscreen_widgets = {
420
420
-
enabled = true;
421
421
-
schema_version = 2;
422
422
-
widget_order = [
423
423
-
"lockscreen-login-box@DP-7"
424
424
-
"lockscreen-login-box@eDP-1"
425
425
-
"lockscreen-widget-0000000000000001"
426
426
-
"lockscreen-widget-0000000000000002"
427
427
-
];
428
428
-
grid = {
429
429
-
cell_size = 16;
430
430
-
major_interval = 4;
431
431
-
visible = true;
432
432
-
};
433
433
-
widget = {
434
434
-
"lockscreen-login-box@DP-7" = {
435
435
-
box_height = 0.0;
436
436
-
box_width = 0.0;
437
437
-
cx = 1280.0;
438
438
-
cy = 957.0;
439
439
-
output = "DP-7";
440
440
-
rotation = 0.0;
441
441
-
type = "login_box";
442
442
-
settings = {
443
443
-
background_color = "surface_variant";
444
444
-
background_opacity = 0.88;
445
445
-
background_radius = 12.0;
446
446
-
input_opacity = 1.0;
447
447
-
input_radius = 6.0;
448
448
-
show_login_button = true;
449
449
-
};
450
450
-
};
451
451
-
"lockscreen-login-box@eDP-1" = {
452
452
-
box_height = 0.0;
453
453
-
box_width = 0.0;
454
454
-
cx = 854.0;
455
455
-
cy = 944.0;
456
456
-
output = "eDP-1";
457
457
-
rotation = 0.0;
458
458
-
type = "login_box";
459
459
-
settings = {
460
460
-
background_color = "surface_variant";
461
461
-
background_opacity = 0.88;
462
462
-
background_radius = 12.0;
463
463
-
input_opacity = 1.0;
464
464
-
input_radius = 6.0;
465
465
-
show_login_button = true;
466
466
-
};
467
467
-
};
468
468
-
lockscreen-widget-0000000000000001 = {
469
469
-
box_height = 0.0;
470
470
-
box_width = 0.0;
471
471
-
cx = 723.0;
472
472
-
cy = 217.5;
473
473
-
output = "eDP-1";
474
474
-
rotation = 0.0;
475
475
-
type = "clock";
476
476
-
settings = {
477
477
-
background = true;
478
478
-
clock_style = "digital";
479
479
-
font_family = "BerkeleyMono Nerd Font";
480
480
-
};
481
481
-
};
482
482
-
lockscreen-widget-0000000000000002 = {
483
483
-
box_height = 0.0;
484
484
-
box_width = 0.0;
485
485
-
cx = 985.5;
486
486
-
cy = 219.5;
487
487
-
output = "eDP-1";
488
488
-
rotation = 0.0;
489
489
-
type = "weather";
490
490
-
};
491
491
-
};
492
492
-
};
493
493
-
494
494
-
notification = {
495
495
-
background_opacity = 0.97;
496
496
-
enable_daemon = true;
497
497
-
layer = "top";
498
498
-
offset_x = 20;
499
499
-
offset_y = 8;
500
500
-
scale = 1.0;
501
501
-
show_actions = true;
502
502
-
show_app_name = true;
503
503
-
};
504
504
-
505
505
-
osd = {
506
506
-
orientation = "vertical";
507
507
-
position = "top_right";
508
508
-
kinds = {
509
509
-
keyboard_layout = false;
510
510
-
lock_keys = false;
511
511
-
};
512
512
-
};
513
513
-
514
514
-
plugins.enabled = [
515
515
-
"noctalia/bongocat"
516
516
-
"noctalia/screen_recorder"
517
517
-
"noctalia/timer"
518
518
-
];
519
519
-
520
520
-
shell = {
521
521
-
font_family = "BerkeleyMono Nerd Font";
522
522
-
launch_apps_as_systemd_services = true;
523
523
-
niri_overview_type_to_launch_enabled = true;
524
524
-
polkit_agent = true;
525
525
-
screen_corners.enabled = true;
526
526
-
};
527
527
-
528
528
-
theme = {
529
529
-
mode = "dark";
530
530
-
source = "builtin";
531
531
-
builtin = "Gruvbox";
532
532
-
templates = {
533
533
-
builtin_ids = [
534
534
-
"alacritty"
535
535
-
"btop"
536
536
-
"gtk3"
537
537
-
"gtk4"
538
538
-
"helix"
539
539
-
"niri"
540
540
-
"qt"
541
541
-
"starship"
542
542
-
];
543
543
-
community_ids = [
544
544
-
"pi-agent"
545
545
-
"zen-browser"
546
546
-
"discord"
547
547
-
"steam"
548
548
-
"yazi"
549
549
-
];
550
550
-
enable_builtin_templates = false;
551
551
-
user = {
552
552
-
alacritty = {
553
553
-
input_path = "${inputs.noctalia}/assets/templates/alacritty/alacritty.toml";
554
554
-
output_path = "$XDG_CONFIG_HOME/alacritty/themes/noctalia.toml";
555
555
-
};
556
556
-
helix = {
557
557
-
input_path = "${inputs.noctalia}/assets/templates/helix/helix.toml";
558
558
-
output_path = "$XDG_CONFIG_HOME/helix/themes/noctalia.toml";
559
559
-
};
560
560
-
starship = {
561
561
-
input_path = "${inputs.noctalia}/assets/templates/starship/starship.toml";
562
562
-
output_path = "$XDG_CONFIG_HOME/starship/noctalia.toml";
563
563
-
post_hook = ''
564
564
-
${pkgs.runtimeShell} -c '
565
565
-
file="''${XDG_CONFIG_HOME:-$HOME/.config}/starship/noctalia.toml"
566
566
-
${pkgs.gnugrep}/bin/grep -qE "^palette[[:space:]]*=" "$file" \
567
567
-
|| ${pkgs.gnused}/bin/sed -i "1ipalette = \"noctalia\"" "$file"
568
568
-
'
569
569
-
'';
570
570
-
};
571
571
-
zellij = {
572
572
-
input_path = "${inputs.noctalia-template-zellij}/zellij.kdl";
573
573
-
output_path = "$XDG_CONFIG_HOME/zellij/themes/noctalia.kdl";
574
574
-
};
575
575
-
};
576
576
-
};
577
577
-
};
578
578
-
579
579
-
wallpaper = {
580
580
-
enabled = true;
581
581
-
directory = "${config.home.homeDirectory}/Pictures/Wallpapers";
582
582
-
automation = {
583
583
-
enabled = true;
584
584
-
interval_minutes = 15;
585
585
-
order = "random";
586
586
-
recursive = true;
587
587
-
};
588
588
-
default.path = "${config.home.homeDirectory}/Pictures/Wallpapers/car.png";
589
589
-
last.path = "${config.home.homeDirectory}/Pictures/Wallpapers/car.png";
590
590
-
monitors = {
591
591
-
DP-7.path = "${config.home.homeDirectory}/Pictures/Wallpapers/car.png";
592
592
-
eDP-1.path = "${config.home.homeDirectory}/Pictures/Wallpapers/monogatari.png";
593
593
-
};
594
594
-
};
595
595
-
596
596
-
widget = {
597
597
-
bluetooth.capsule_padding = 14.0;
598
598
-
media.hide_when_no_media = true;
599
599
-
network.show_label = false;
600
600
-
tray.drawer = true;
601
601
-
};
602
602
-
};
603
603
-
};
604
604
-
605
381
# Wallpaper downloads
606
382
home.activation.downloadWallpapers = config.lib.dag.entryAfter [ "writeBoundary" ] ''
607
383
DIR="${config.home.homeDirectory}/Pictures/Wallpapers"
+1
-1
modules/hosts/framework16.nix
Reviewed
···
32
32
home-manager.users.sean = {
33
33
imports = [
34
34
inputs.niri.homeModules.niri
35
35
-
inputs.noctalia.homeModules.default
36
35
inputs.zen-browser.homeModules.beta
37
36
inputs.agenix.homeManagerModules.default
38
37
hm.sean
39
38
hm.desktop
39
39
+
hm.noctalia
40
40
hm.fonts
41
41
hm.shell
42
42
hm.editor
+1
-1
modules/hosts/ideapad5.nix
Reviewed
···
31
31
home-manager.users.sean = {
32
32
imports = [
33
33
inputs.niri.homeModules.niri
34
34
-
inputs.noctalia.homeModules.default
35
34
inputs.zen-browser.homeModules.beta
36
35
inputs.agenix.homeManagerModules.default
37
36
hm.sean
38
37
hm.desktop
38
38
+
hm.noctalia
39
39
hm.fonts
40
40
hm.shell
41
41
hm.editor
+1
-1
modules/hosts/mira.nix
Reviewed
···
43
43
home-manager.users.sean = {
44
44
imports = [
45
45
inputs.niri.homeModules.niri
46
46
-
inputs.noctalia.homeModules.default
47
46
inputs.zen-browser.homeModules.beta
48
47
inputs.agenix.homeManagerModules.default
49
48
hm.sean
50
49
hm.desktop
50
50
+
hm.noctalia
51
51
hm.fonts
52
52
hm.shell
53
53
hm.editor
+233
modules/noctalia.nix
Reviewed
···
1
1
+
{ inputs, ... }:
2
2
+
3
3
+
{
4
4
+
flake.modules.homeManager.noctalia =
5
5
+
{ pkgs, config, ... }:
6
6
+
{
7
7
+
imports = [ inputs.noctalia.homeModules.default ];
8
8
+
9
9
+
programs.noctalia = {
10
10
+
enable = true;
11
11
+
systemd.enable = true;
12
12
+
settings = {
13
13
+
bar.default = {
14
14
+
auto_hide = true;
15
15
+
center = [
16
16
+
"clock"
17
17
+
"weather"
18
18
+
];
19
19
+
end = [
20
20
+
"media"
21
21
+
"notifications"
22
22
+
"clipboard"
23
23
+
"network"
24
24
+
"bluetooth"
25
25
+
"volume"
26
26
+
"battery"
27
27
+
"control-center"
28
28
+
"tray"
29
29
+
"session"
30
30
+
];
31
31
+
margin_edge = 0;
32
32
+
reserve_space = false;
33
33
+
start = [
34
34
+
"wallpaper"
35
35
+
"workspaces"
36
36
+
];
37
37
+
widget_spacing = 12;
38
38
+
};
39
39
+
40
40
+
location.auto_locate = true;
41
41
+
42
42
+
lockscreen = {
43
43
+
allow_empty_password = true;
44
44
+
blurred_desktop = true;
45
45
+
};
46
46
+
47
47
+
lockscreen_widgets = {
48
48
+
enabled = true;
49
49
+
schema_version = 2;
50
50
+
widget_order = [
51
51
+
"lockscreen-login-box@DP-7"
52
52
+
"lockscreen-login-box@eDP-1"
53
53
+
"lockscreen-widget-0000000000000001"
54
54
+
"lockscreen-widget-0000000000000002"
55
55
+
];
56
56
+
grid = {
57
57
+
cell_size = 16;
58
58
+
major_interval = 4;
59
59
+
visible = true;
60
60
+
};
61
61
+
widget = {
62
62
+
"lockscreen-login-box@DP-7" = {
63
63
+
box_height = 0.0;
64
64
+
box_width = 0.0;
65
65
+
cx = 1280.0;
66
66
+
cy = 957.0;
67
67
+
output = "DP-7";
68
68
+
rotation = 0.0;
69
69
+
type = "login_box";
70
70
+
settings = {
71
71
+
background_color = "surface_variant";
72
72
+
background_opacity = 0.88;
73
73
+
background_radius = 12.0;
74
74
+
input_opacity = 1.0;
75
75
+
input_radius = 6.0;
76
76
+
show_login_button = true;
77
77
+
};
78
78
+
};
79
79
+
"lockscreen-login-box@eDP-1" = {
80
80
+
box_height = 0.0;
81
81
+
box_width = 0.0;
82
82
+
cx = 854.0;
83
83
+
cy = 944.0;
84
84
+
output = "eDP-1";
85
85
+
rotation = 0.0;
86
86
+
type = "login_box";
87
87
+
settings = {
88
88
+
background_color = "surface_variant";
89
89
+
background_opacity = 0.88;
90
90
+
background_radius = 12.0;
91
91
+
input_opacity = 1.0;
92
92
+
input_radius = 6.0;
93
93
+
show_login_button = true;
94
94
+
};
95
95
+
};
96
96
+
lockscreen-widget-0000000000000001 = {
97
97
+
box_height = 0.0;
98
98
+
box_width = 0.0;
99
99
+
cx = 723.0;
100
100
+
cy = 217.5;
101
101
+
output = "eDP-1";
102
102
+
rotation = 0.0;
103
103
+
type = "clock";
104
104
+
settings = {
105
105
+
background = true;
106
106
+
clock_style = "digital";
107
107
+
font_family = "BerkeleyMono Nerd Font";
108
108
+
};
109
109
+
};
110
110
+
lockscreen-widget-0000000000000002 = {
111
111
+
box_height = 0.0;
112
112
+
box_width = 0.0;
113
113
+
cx = 985.5;
114
114
+
cy = 219.5;
115
115
+
output = "eDP-1";
116
116
+
rotation = 0.0;
117
117
+
type = "weather";
118
118
+
};
119
119
+
};
120
120
+
};
121
121
+
122
122
+
notification = {
123
123
+
background_opacity = 0.97;
124
124
+
enable_daemon = true;
125
125
+
layer = "top";
126
126
+
offset_x = 20;
127
127
+
offset_y = 8;
128
128
+
scale = 1.0;
129
129
+
show_actions = true;
130
130
+
show_app_name = true;
131
131
+
};
132
132
+
133
133
+
osd = {
134
134
+
orientation = "vertical";
135
135
+
position = "top_right";
136
136
+
kinds = {
137
137
+
keyboard_layout = false;
138
138
+
lock_keys = false;
139
139
+
};
140
140
+
};
141
141
+
142
142
+
plugins.enabled = [
143
143
+
"noctalia/bongocat"
144
144
+
"noctalia/screen_recorder"
145
145
+
"noctalia/timer"
146
146
+
];
147
147
+
148
148
+
shell = {
149
149
+
font_family = "BerkeleyMono Nerd Font";
150
150
+
launch_apps_as_systemd_services = true;
151
151
+
niri_overview_type_to_launch_enabled = true;
152
152
+
polkit_agent = true;
153
153
+
screen_corners.enabled = true;
154
154
+
};
155
155
+
156
156
+
theme = {
157
157
+
mode = "dark";
158
158
+
source = "builtin";
159
159
+
builtin = "Gruvbox";
160
160
+
templates = {
161
161
+
builtin_ids = [
162
162
+
"alacritty"
163
163
+
"btop"
164
164
+
"gtk3"
165
165
+
"gtk4"
166
166
+
"helix"
167
167
+
"niri"
168
168
+
"qt"
169
169
+
"starship"
170
170
+
];
171
171
+
community_ids = [
172
172
+
"pi-agent"
173
173
+
"zen-browser"
174
174
+
"discord"
175
175
+
"steam"
176
176
+
"yazi"
177
177
+
];
178
178
+
enable_builtin_templates = false;
179
179
+
user = {
180
180
+
alacritty = {
181
181
+
input_path = "${inputs.noctalia}/assets/templates/alacritty/alacritty.toml";
182
182
+
output_path = "$XDG_CONFIG_HOME/alacritty/themes/noctalia.toml";
183
183
+
};
184
184
+
helix = {
185
185
+
input_path = "${inputs.noctalia}/assets/templates/helix/helix.toml";
186
186
+
output_path = "$XDG_CONFIG_HOME/helix/themes/noctalia.toml";
187
187
+
};
188
188
+
starship = {
189
189
+
input_path = "${inputs.noctalia}/assets/templates/starship/starship.toml";
190
190
+
output_path = "$XDG_CONFIG_HOME/starship/noctalia.toml";
191
191
+
post_hook = ''
192
192
+
${pkgs.runtimeShell} -c '
193
193
+
file="''${XDG_CONFIG_HOME:-$HOME/.config}/starship/noctalia.toml"
194
194
+
${pkgs.gnugrep}/bin/grep -qE "^palette[[:space:]]*=" "$file" \
195
195
+
|| ${pkgs.gnused}/bin/sed -i "1ipalette = \"noctalia\"" "$file"
196
196
+
'
197
197
+
'';
198
198
+
};
199
199
+
zellij = {
200
200
+
input_path = "${inputs.noctalia-template-zellij}/zellij.kdl";
201
201
+
output_path = "$XDG_CONFIG_HOME/zellij/themes/noctalia.kdl";
202
202
+
};
203
203
+
};
204
204
+
};
205
205
+
};
206
206
+
207
207
+
wallpaper = {
208
208
+
enabled = true;
209
209
+
directory = "${config.home.homeDirectory}/Pictures/Wallpapers";
210
210
+
automation = {
211
211
+
enabled = true;
212
212
+
interval_minutes = 15;
213
213
+
order = "random";
214
214
+
recursive = true;
215
215
+
};
216
216
+
default.path = "${config.home.homeDirectory}/Pictures/Wallpapers/car.png";
217
217
+
last.path = "${config.home.homeDirectory}/Pictures/Wallpapers/car.png";
218
218
+
monitors = {
219
219
+
DP-7.path = "${config.home.homeDirectory}/Pictures/Wallpapers/car.png";
220
220
+
eDP-1.path = "${config.home.homeDirectory}/Pictures/Wallpapers/monogatari.png";
221
221
+
};
222
222
+
};
223
223
+
224
224
+
widget = {
225
225
+
bluetooth.capsule_padding = 14.0;
226
226
+
media.hide_when_no_media = true;
227
227
+
network.show_label = false;
228
228
+
tray.drawer = true;
229
229
+
};
230
230
+
};
231
231
+
};
232
232
+
};
233
233
+
}