Commit for generation 220

This commit is contained in:
2024-10-10 04:01:59 -04:00
parent f51df5e67b
commit 6df90e12ab
3 changed files with 0 additions and 58 deletions

View File

@@ -12,7 +12,6 @@
++ [ (import ./spicetify.nix) ]
++ [ (import ./starship.nix) ]
++ [ (import ./swaync/swaync.nix)]
++ [ (import ./theme) ]
++ [ (import ./toilet) ]
++ [ (import ./userpkgs.nix) ]
++ [ (import ./waybar) ]

View File

@@ -1,27 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1726937504,
"narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9357f4f23713673f310988025d9dc261c20e70c6",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@@ -1,30 +0,0 @@
{
description = "Hackneyed X11 Cursors";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system} = {
default = pkgs.stdenv.mkDerivation {
pname = "hackneyed-cursors-dark-right-48px";
version = "0.9.2";
src = pkgs.fetchurl {
url = "https://gitlab.com/-/project/6703061/uploads/53e6cb854a0bd446b326ca7c40fb5cdf/Hackneyed-Dark-48px-0.9.2-right-handed.tar.bz2";
sha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAA=";
};
installPhase = ''
mkdir -p $out/share/icons/Hackneyed-Dark
tar xjf $src -C $out/share/icons/Hackneyed-Dark --strip-components=1
'';
};
};
};
}