From 6df90e12abea82f307b1d7b0b3c26d3e835841d8 Mon Sep 17 00:00:00 2001 From: Kyler Clay Date: Thu, 10 Oct 2024 04:01:59 -0400 Subject: [PATCH] Commit for generation 220 --- glasshouse-desktop/home/default.nix | 1 - .../home/theme/cursor/flake.lock | 27 ----------------- .../home/theme/cursor/flake.nix | 30 ------------------- 3 files changed, 58 deletions(-) delete mode 100644 glasshouse-desktop/home/theme/cursor/flake.lock delete mode 100644 glasshouse-desktop/home/theme/cursor/flake.nix diff --git a/glasshouse-desktop/home/default.nix b/glasshouse-desktop/home/default.nix index b5d752f..119a329 100644 --- a/glasshouse-desktop/home/default.nix +++ b/glasshouse-desktop/home/default.nix @@ -12,7 +12,6 @@ ++ [ (import ./spicetify.nix) ] ++ [ (import ./starship.nix) ] ++ [ (import ./swaync/swaync.nix)] - ++ [ (import ./theme) ] ++ [ (import ./toilet) ] ++ [ (import ./userpkgs.nix) ] ++ [ (import ./waybar) ] diff --git a/glasshouse-desktop/home/theme/cursor/flake.lock b/glasshouse-desktop/home/theme/cursor/flake.lock deleted file mode 100644 index c36c036..0000000 --- a/glasshouse-desktop/home/theme/cursor/flake.lock +++ /dev/null @@ -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 -} diff --git a/glasshouse-desktop/home/theme/cursor/flake.nix b/glasshouse-desktop/home/theme/cursor/flake.nix deleted file mode 100644 index 760c758..0000000 --- a/glasshouse-desktop/home/theme/cursor/flake.nix +++ /dev/null @@ -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 - ''; - }; - }; - }; -}