diff --git a/overlays/fonts.nix b/overlays/fonts.nix deleted file mode 100644 index 4f837020..00000000 --- a/overlays/fonts.nix +++ /dev/null @@ -1 +0,0 @@ -import ./fonts diff --git a/overlays/fonts/default.nix b/overlays/fonts/default.nix deleted file mode 100644 index c5be3050..00000000 --- a/overlays/fonts/default.nix +++ /dev/null @@ -1,4 +0,0 @@ -final: prev: -with final; { - futura-otf = import ./futura.nix; -} diff --git a/overlays/fonts/futura.nix b/overlays/fonts/futura.nix deleted file mode 100644 index 3c2c3cc4..00000000 --- a/overlays/fonts/futura.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ stdenv, fetchFromGitHub }: - -stdenv.mkDerivation rec { - pname = "futura"; - version = "1.0.0"; - - src = ../secrets/fonts/Futura Std; - - installPhase = '' - install -D -m 444 /* -t $out/share/fonts/otf - ''; - - meta = with stdenv.lib; { - description = ""; - longDescription = '' - ''; - homepage = ""; - }; -} diff --git a/overlays/pub-solar.nix b/overlays/pub-solar.nix deleted file mode 100644 index e1215796..00000000 --- a/overlays/pub-solar.nix +++ /dev/null @@ -1 +0,0 @@ -import ./pub-solar diff --git a/overlays/pub-solar/default.nix b/overlays/pub-solar/default.nix index 88257773..935206d9 100644 --- a/overlays/pub-solar/default.nix +++ b/overlays/pub-solar/default.nix @@ -2,13 +2,13 @@ final: prev: with final; { import-gtk-settings = writeShellScriptBin "import-gtk-settings" (import ./import-gtk-settings.nix final); mailto-mutt = writeShellScriptBin "mailto-mutt" (import ./mailto-mutt.nix final); - mu = writeShellScriptBin "mu" (import ./mu.nix final); mopidy-jellyfin = import ./mopidy-jellyfin.nix final; + mu = writeShellScriptBin "mu" (import ./mu.nix final); psos = writeShellScriptBin "psos" (import ./psos.nix final); s = writeShellScriptBin "s" (import ./s.nix final); - swaylock-bg = writeScriptBin "swaylock-bg" (import ./swaylock-bg.nix final); sway-launcher = writeScriptBin "sway-launcher" (import ./sway-launcher.nix final); sway-service = writeShellScriptBin "sway-service" (import ./sway-service.nix final); + swaylock-bg = writeScriptBin "swaylock-bg" (import ./swaylock-bg.nix final); toggle-kbd-layout = writeShellScriptBin "toggle-kbd-layout" (import ./toggle-kbd-layout.nix final); uhk-agent = import ./uhk-agent.nix final; wcwd = writeShellScriptBin "wcwd" (import ./wcwd.nix final); diff --git a/overlays/pub-solar/image-gpu-rom.nix b/overlays/pub-solar/image-gpu-rom.nix deleted file mode 100644 index a472ee52..00000000 --- a/overlays/pub-solar/image-gpu-rom.nix +++ /dev/null @@ -1,7 +0,0 @@ -GPU_VGA_PORT="0000:01:00.0" - -echo 1 > "/sys/bus/pci/devices/$GPU_VGA_PORT/rom" -cat "/sys/bus/pci/devices/$GPU_VGA_PORT/rom" > \ -"/usr/share/qemu/gpu-1060.rom" -echo 0 > "/sys/bus/pci/devices/$GPU_VGA_PORT/rom" - diff --git a/overlays/pub-solar/iommu-test.nix b/overlays/pub-solar/iommu-test.nix deleted file mode 100644 index e2439bfa..00000000 --- a/overlays/pub-solar/iommu-test.nix +++ /dev/null @@ -1,9 +0,0 @@ -shopt - s nullglob - for - g in /sys/kernel/iommu_groups/*; do -echo "IOMMU Group ${g##*/}:" -for d in $g/devices/*; do -echo -e "\t$(lspci -nns ${d##*/})" -done; -done; - diff --git a/overlays/pub-solar/overlay.nix b/overlays/pub-solar/overlay.nix deleted file mode 100644 index 5378b910..00000000 --- a/overlays/pub-solar/overlay.nix +++ /dev/null @@ -1,5 +0,0 @@ -# You can use this file as a nixpkgs overlay. This is useful in the -# case where you don't want to add the whole NUR namespace to your -# configuration. - -self: super: import ./default.nix { pkgs = super; }