From e13291a25283f2a8f5c4d2b5379d4f380c807a6a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 7 Dec 2023 13:11:16 +0300 Subject: [PATCH] Don't use overlays --- flake.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 979ea73..c14fb8b 100644 --- a/flake.nix +++ b/flake.nix @@ -104,7 +104,7 @@ upkgs = tools.recursiveUpdateMap (name: { ${name} = inputs.${name}.packages.${system}.default; - }) [ "hyprland" "hyprpicker" "ghostty" ]; + }) [ "nixSuper" "hyprland" "hyprpicker" "ghostty" ]; lib = nixpkgs.lib; @@ -159,7 +159,9 @@ }; }; - defaultConfiguration = host: { config, ... }: with abstractions; systemConfiguration { + defaultConfiguration = host: with abstractions; systemConfiguration { + nix.package = upkgs.nixSuper; + nix.gc = { automatic = true; dates = "daily"; @@ -188,10 +190,7 @@ nix.settings.warn-dirty = false; nixpkgs.config.allowUnfree = true; - nixpkgs.overlays = [ - fenix.overlays.default - nixSuper.overlays.default - ]; + nixpkgs.overlays = [ fenix.overlays.default ]; programs.nix-ld = enabled {};