1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Don't use overlays

This commit is contained in:
RGBCube 2023-12-07 13:11:16 +03:00
parent 28affe0c7e
commit e13291a252
No known key found for this signature in database

View file

@ -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 {};