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

View File

@@ -0,0 +1,12 @@
{ stdenv, lib }:
stdenv.mkDerivation {
pname = "custom-fonts";
version = "0.1.0";
src = ../../custom/fonts;
installPhase = ''
mkdir -p $out/share/fonts
cp -r $src/* $out/share/fonts
'';
}

27
nix/fonts/flake.lock generated Normal file
View File

@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1750134718,
"narHash": "sha256-v263g4GbxXv87hMXMCpjkIxd/viIF7p3JpJrwgKdNiI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9e83b64f727c88a7711a2c463a7b16eedb69a84c",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

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;
};
}

1
nix/fonts/result Symbolic link
View File

@@ -0,0 +1 @@
/nix/store/0vacng2hzhihjl7z98ni7vzs8rdl68v3-custom-fonts-0.1.0