mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
15 lines
422 B
Nix
15 lines
422 B
Nix
{ inputs, config, ... }:
|
|
{
|
|
flake.nixosModules.profile-base = {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.agenix.nixosModules.default
|
|
config.flake.nixosModules.nix-config
|
|
config.flake.nixosModules.boot
|
|
config.flake.nixosModules.keys
|
|
config.flake.nixosModules.hm
|
|
config.flake.nixosModules.secrets
|
|
config.flake.nixosModules.tailscale
|
|
];
|
|
};
|
|
}
|