flake: fix patching

This commit is contained in:
Charlotte Van Petegem 2023-10-04 10:53:44 +02:00
parent b4af22f778
commit 41ab62fb4b
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 10 additions and 6 deletions

View file

@ -122,16 +122,21 @@
./modules
];
nixosSystem = system: name:
let nixpkgs = nixpkgsForSystem system; in
inputs.nixpkgs.lib.nixosSystem {
let
nixpkgs = nixpkgsForSystem system;
lib = (import nixpkgs { inherit overlays system; }).lib;
in
inputs.nixpkgs.lib.nixosSystem {
inherit lib system;
specialArgs = { modulesPath = toString (nixpkgs + "/nixos/modules"); };
system = "x86_64-linux";
baseModules = import (nixpkgs + "/nixos/modules/module-list.nix");
modules = commonModules ++ [
({ config, ... }:
{
nixpkgs.overlays = overlays;
nixpkgs.pkgs = import nixpkgs {
inherit overlays system;
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) config.chvp.base.nix.unfreePackages;
};
networking.hostName = name;
nix = {
extraOptions = "extra-experimental-features = nix-command flakes";

View file

@ -25,6 +25,7 @@ in
default = false;
example = true;
};
# Used in /flake.nix, since we have to use it at nixpkgs import time
unfreePackages = lib.mkOption {
default = [ ];
example = [ "teams" ];
@ -85,8 +86,6 @@ in
'';
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) config.chvp.base.nix.unfreePackages;
home-manager.users.charlotte = { ... }:
lib.recursiveUpdate
(lib.optionalAttrs config.chvp.base.nix.enableDirenv baseDirenv)