32 lines
680 B
Nix
32 lines
680 B
Nix
{
|
|
inputs,
|
|
stable,
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(
|
|
{ inputs, lib, ... }:
|
|
{
|
|
nixpkgs = {
|
|
config.allowUnfree = true;
|
|
};
|
|
home-manager.extraSpecialArgs = { inherit stable; };
|
|
}
|
|
)
|
|
../../modules/security.nix
|
|
../../modules/common-system.nix
|
|
./configuration.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.distro-grub-themes.nixosModules.${system}.default
|
|
../../home/anne/default.nix
|
|
../../home/alex/default.nix
|
|
../../modules/grub-themes
|
|
../../modules/hyprland
|
|
../../modules/podman
|
|
../../modules/tailscale
|
|
../../modules/flatpak.nix
|
|
../../modules/nh.nix
|
|
];
|
|
}
|