15 lines
452 B
Nix
15 lines
452 B
Nix
{ lib, config, pkgs, inputs, ... }: {
|
|
imports = [
|
|
({ inputs, lib, ... }: {
|
|
nixpkgs = { config.allowUnfree = true; };
|
|
nix.registry =
|
|
lib.mkForce (lib.mapAttrs (_: value: { flake = value; }) inputs);
|
|
})
|
|
../../modules/security.nix
|
|
../../modules/common-system.nix
|
|
./configuration.nix
|
|
inputs.home-manager-unstable.nixosModules.home-manager
|
|
../../home/anne/default.nix
|
|
../../home/alex/default.nix
|
|
];
|
|
}
|