all repos — nixfiles @ 171c086446515137215f13881a90010b8c653809

System and user configuration, managed by nix and home-manager

remove overlays

Alan Pearce
commit

171c086446515137215f13881a90010b8c653809

parent

3f31bf5883c71f8d3669b7df34358d4f1409b368

2 files changed, 11 insertions(+), 28 deletions(-)

changed files
M flake.nixflake.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 - ''; - }); -}