mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
13 lines
232 B
Nix
13 lines
232 B
Nix
{ config, ... }:
|
|
{
|
|
flake.nixosModules.profile-base = {
|
|
import = with config.flake.nixosModules; [
|
|
nix-config
|
|
boot
|
|
keys
|
|
hm # maybe drop and make desktop only?
|
|
secrets
|
|
tailscale
|
|
];
|
|
};
|
|
}
|