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
change display stuff
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
a5d56058
a5d560583f434b50c1c6621a5ac96950a5139919
parent
94c9dc96
94c9dc96df3a8a32a46921faa673532f2f3e1b76
change-id
mptrpqly
mptrpqlyuzulzymkwpyuvmrwzwuunspl
+19
1 changed file
Expand all
Collapse all
Unified
Split
hosts
common
home.nix
+19
hosts/common/home.nix
Reviewed
···
668
668
};
669
669
};
670
670
671
671
+
# Font rendering configuration
672
672
+
fonts.fontconfig = {
673
673
+
enable = true;
674
674
+
defaultFonts = {
675
675
+
monospace = [ "BerkeleyMono Nerd Font" ];
676
676
+
sansSerif = [ "Noto Sans" ];
677
677
+
serif = [ "Noto Serif" ];
678
678
+
};
679
679
+
};
680
680
+
681
681
+
# Cursor configuration
682
682
+
home.pointerCursor = {
683
683
+
name = "Adwaita";
684
684
+
package = pkgs.adwaita-icon-theme;
685
685
+
size = 16;
686
686
+
x11.enable = true;
687
687
+
gtk.enable = true;
688
688
+
};
689
689
+
671
690
# Session variables
672
691
home.sessionVariables = {
673
692
EDITOR = "hx";