Compare commits

..

No commits in common. "b2e95eebd7b4aeb9d355b024bbd501234d292dd9" and "874852ca073ccc59e85e5a23ae555fe49b441c1c" have entirely different histories.

2 changed files with 2 additions and 14 deletions

View file

@ -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

View file

@ -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 $@