feat: add rofi, fonts, dunst config, gtk theme
This commit is contained in:
18
nix/fonts/flake.nix
Normal file
18
nix/fonts/flake.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user