diff --git a/flake.nix b/flake.nix index 382bca6..c7c435b 100644 --- a/flake.nix +++ b/flake.nix @@ -57,7 +57,7 @@ # i be on my puter fr myputer = nixpkgs.lib.nixosSystem { # nix passes these to every single module - specialArgs = {inherit inputs pkgs-unstable;}; + specialArgs = {inherit inputs;}; modules = [ ./hosts/myputer @@ -67,7 +67,7 @@ # my laptop 0w0 lolcathost = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs pkgs-unstable;}; + specialArgs = {inherit inputs;}; modules = [ ./hosts/lolcathost diff --git a/scripts/fontgrep b/scripts/fontgrep deleted file mode 100755 index 6e06a64..0000000 --- a/scripts/fontgrep +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bash - -function fontgrep { - fc-list \ - | grep $@ \ - | awk '{$1=""; print substr($0, 2, length($0)-1) }' \ - | grep -oE '^\s*[^,]+' \ - | sort \ - | uniq -} - -fontgrep $@