feat: add rofi, fonts, dunst config, gtk theme

This commit is contained in:
2025-06-17 23:13:01 -07:00
parent a091cf8a79
commit 9a530d15de
18 changed files with 595 additions and 11 deletions

18
nix/fonts/flake.nix Normal file
View File

@@ -0,0 +1,18 @@
{
description = "custom-fonts";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs =
{ self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
fonts = pkgs.callPackage ./custom-fonts.nix { };
in
{
packages.x86_64-linux.default = fonts;
};
}