mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 19:17:45 +00:00
Don't use overlays
This commit is contained in:
parent
28affe0c7e
commit
e13291a252
1 changed files with 5 additions and 6 deletions
11
flake.nix
11
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 {};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue