mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
21 lines
369 B
Nix
21 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'
|
||
|
'';
|
||
|
};
|
||
|
}
|