Update for 25.05

This commit is contained in:
Bun 2025-05-28 18:19:50 -04:00
parent 8bfcca1bb8
commit 63c42b081d
12 changed files with 193 additions and 209 deletions

View file

@ -1,11 +1,14 @@
{ config, lib, pkgsStable, ... }:
{ config, lib, pkgs, ... }:
{
home.packages = lib.mkIf config.home.desktop.enable (with pkgsStable; [
liberation_ttf
noto-fonts
sarasa-gothic
twitter-color-emoji
ubuntu-classic
(nerdfonts.override { fonts = [ "UbuntuMono" ]; })
]);
config = lib.mkIf config.home.desktop.enable {
home.packages = (with pkgs; [
liberation_ttf
noto-fonts
sarasa-gothic
twitter-color-emoji
]) ++ (with pkgs.nerd-fonts; [
ubuntu
ubuntu-mono
]);
};
}