27 lines
438 B
Nix
27 lines
438 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(
|
|
{ ... }:
|
|
{
|
|
nixpkgs = {
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|
|
)
|
|
../../modules/security.nix
|
|
../../modules/common-system.nix
|
|
./configuration.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
../../home/anne/default.nix
|
|
../../home/alex/default.nix
|
|
../../modules/podman
|
|
../../modules/tailscale
|
|
];
|
|
}
|