7 lines
186 B
Nix
7 lines
186 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [ ./default.nix ];
|
|
deployment = {
|
|
tags = [ "workstation" "intel" "chromebook" ];
|
|
allowLocalDeployment = true;
|
|
};
|
|
}
|