14 lines
430 B
Nix
14 lines
430 B
Nix
{ lib, config, pkgs, inputs, ... }: {
|
|
imports = [
|
|
({ inputs, lib, ... }: {
|
|
nixpkgs = { config.allowUnfree = true; };
|
|
nix.registry = 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
|
|
];
|
|
}
|