feat(nixosModules/desktop): add font-awesome

This commit is contained in:
Mohammad Rafiq 2025-06-01 18:50:05 +08:00
parent a318f13bd0
commit a6259c7c99
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

View file

@ -24,8 +24,12 @@ in
exec-once = [ exec-once = [
"uwsm app -- $LOCKSCREEN" "uwsm app -- $LOCKSCREEN"
"uwsm app -- $NOTIFICATION_DAEMON" "uwsm app -- $NOTIFICATION_DAEMON"
];
exec = [
"uwsm app -- $STATUS_BAR" "uwsm app -- $STATUS_BAR"
]; ];
xwayland.force_zero_scaling = true; xwayland.force_zero_scaling = true;
} }
(import ./decoration.nix) (import ./decoration.nix)

View file

@ -30,6 +30,11 @@
}; };
config = lib.mkMerge [ config = lib.mkMerge [
{
fonts.packages = with pkgs; [
font-awesome
];
}
(lib.mkIf config.desktop.enableSteam { (lib.mkIf config.desktop.enableSteam {
programs.steam = { programs.steam = {
enable = true; enable = true;