mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
Instead of having to manually stub packages that should not be downloaded we instead automatically stub all packages (except a small list of whitelisted ones). Tests can re-introduce the real package by using the `realPkgs` module argument.
26 lines
683 B
Nix
26 lines
683 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Enables the default bar configuration
|
|
home.stateVersion = "20.09";
|
|
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
package = null;
|
|
checkConfig = false;
|
|
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
|
|
};
|
|
|
|
assertions = [{
|
|
assertion =
|
|
!lib.elem config.wayland.windowManager.sway.config.bars [ [ { } ] [ ] ];
|
|
message =
|
|
"The default Sway bars configuration should be set for this test (sway-null-package) to work.";
|
|
}];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/sway/config
|
|
assertFileContent $(normalizeStorePaths home-files/.config/sway/config) \
|
|
${./sway-null-package.conf}
|
|
'';
|
|
}
|