[feat] nixfmt and change the hyprpaper module

This commit is contained in:
uttarayan21
2024-03-05 11:30:24 +05:30
parent e9c95ee2e9
commit e698f4de80
13 changed files with 139 additions and 159 deletions

View File

@@ -1,9 +1,10 @@
{ pkgs, ... }:
let
mkCatppuccin = { owner ? "catppuccin", item, rev ? "main", sha256 ? pkgs.lib.fakeSha256 }:
mkCatppuccin = { owner ? "catppuccin", version ? "0.0.1", item, rev ? "main"
, sha256 ? pkgs.lib.fakeSha256 }:
pkgs.stdenv.mkDerivation {
inherit version;
pname = item;
version = "0.0.1";
src = pkgs.fetchFromGitHub {
inherit owner rev sha256;
repo = item;
@@ -14,8 +15,7 @@ let
cp -r ./* $out/
'';
};
in
{
in {
bat = mkCatppuccin {
item = "bat";