17 lines
495 B
Nix
17 lines
495 B
Nix
{ lib, config, pkgs, inputs, ... }: {
|
|
imports = [
|
|
({ inputs, lib, ... }: {
|
|
nixpkgs = {
|
|
config.allowUnfree = true;
|
|
overlays = with inputs; [ emacs.overlay ];
|
|
};
|
|
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
|
|
];
|
|
}
|