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
fix starship noctalia palette quoting
author
Sean Aye
date
1 week ago
(Jun 16, 2026, 11:00 AM -0400)
commit
0d95cc9d
0d95cc9db0a6b90ece90bdb4cdf7b656261dcc75
parent
0b923fe6
0b923fe6e6310926bf209e0ff81441f2bee5cf69
change-id
vzowozup
vzowozuppvnnwssknvlnzmnztlnpnnzs
+8
-9
1 changed file
Expand all
Collapse all
Unified
Split
modules
desktop.nix
+8
-9
modules/desktop.nix
Reviewed
···
35
35
};
36
36
37
37
# Scale regreet's greeter for HiDPI displays
38
38
-
services.greetd.settings.default_session.command = lib.mkForce
39
39
-
"${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} -s -d -- env GDK_SCALE=2 ${lib.getExe pkgs.regreet}";
38
38
+
services.greetd.settings.default_session.command =
39
39
+
lib.mkForce "${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} -s -d -- env GDK_SCALE=2 ${lib.getExe pkgs.regreet}";
40
40
41
41
# ZSA Keyboard udev rules for Oryx web flashing and live training
42
42
services.udev.extraRules = ''
···
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"
567
567
+
|| ${pkgs.gnused}/bin/sed -i "1ipalette = \"noctalia\"" "$file"
568
568
'
569
569
'';
570
570
};
···
603
603
};
604
604
605
605
# Wallpaper downloads
606
606
-
home.activation.downloadWallpapers =
607
607
-
config.lib.dag.entryAfter [ "writeBoundary" ] ''
608
608
-
DIR="${config.home.homeDirectory}/Pictures/Wallpapers"
609
609
-
mkdir -p "$DIR"
610
610
-
${downloads}
611
611
-
'';
606
606
+
home.activation.downloadWallpapers = config.lib.dag.entryAfter [ "writeBoundary" ] ''
607
607
+
DIR="${config.home.homeDirectory}/Pictures/Wallpapers"
608
608
+
mkdir -p "$DIR"
609
609
+
${downloads}
610
610
+
'';
612
611
613
612
services.udiskie = {
614
613
enable = true;