mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
9 lines
186 B
Nix
9 lines
186 B
Nix
{ config, ... }:
|
|
{
|
|
flake.nixosConfigurations.artemis = config.flake.lib.mkHost {
|
|
modules = [
|
|
config.flake.nixosModules.profile-laptop
|
|
../../hosts/artemis
|
|
];
|
|
};
|
|
}
|