depot/third_party/home-manager/tests/modules/targets-darwin/darwin.nix
Default email 72904c318c Project import generated by Copybara.
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
2020-10-11 17:22:58 -07:00

20 lines
369 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
darwinTestApp = pkgs.runCommandLocal "target-darwin-example-app" { } ''
mkdir -p $out/Applications
touch $out/Applications/example-app
'';
in {
config = {
home.packages = [ darwinTestApp ];
nmt.script = ''
assertFileExists 'home-files/Applications/Home Manager Apps/example-app'
'';
};
}