remove overlays
2 files changed, 11 insertions(+), 28 deletions(-)
changed files
M flake.nix → flake.nix
@@ -82,7 +82,6 @@ home-manager.lib.homeManagerConfiguration { pkgs = import nixpkgs { inherit system; overlays = [ - (import ./overlays) agenix.overlays.default nur.overlays.default (self: super: {@@ -100,21 +99,17 @@ in { nixosConfigurations.prefect = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - modules = [ - { - nixpkgs.overlays = [ - (import ./overlays) - ]; - } - ./system/hosts/prefect.nix - ] - ++ (with nixos-hardware.nixosModules; [ - common-cpu-amd - common-cpu-amd-pstate - common-pc-ssd - common-pc - common-gpu-nvidia-nonprime - ]); + modules = ( + with nixos-hardware.nixosModules; + [ + ./system/hosts/prefect.nix + common-cpu-amd + common-cpu-amd-pstate + common-pc-ssd + common-pc + common-gpu-nvidia-nonprime + ] + ); }; nixosConfigurations.nano = nixpkgs.lib.nixosSystem { system = "aarch64-linux";@@ -132,7 +127,6 @@ specialArgs = { inherit searchix; }; modules = [ { nixpkgs.overlays = [ - (import ./overlays) nur.overlays.default elgit.overlays.default searchix.overlays.default
D overlays/default.nix
@@ -1,11 +0,0 @@ -self: super: { - firefox-bin-unwrapped = super.firefox-bin-unwrapped.override { systemLocale = "en-GB"; }; - firefox-devedition-bin-unwrapped = super.firefox-devedition-bin-unwrapped.override { - systemLocale = "en-GB"; - }; - rofi = super.rofi.overrideAttrs (oldAttrs: { - postInstall = '' - ln $out/bin/rofi $out/bin/dmenu - ''; - }); -}