mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
7df6656b11
This reverts commit 666eee4f72
(#2091).
As of NixOS/nixpkgs#128121, which incorporated changes from:
https://codeberg.org/dnkl/foot/pulls/588/, foot no longer
errors if there is no config file.
21 lines
461 B
Nix
21 lines
461 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
package = pkgs.writeShellScriptBin "dummy-foot" "" // { outPath = "@foot@"; };
|
|
in {
|
|
config = {
|
|
programs.foot = {
|
|
inherit package;
|
|
enable = true;
|
|
server.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/foot/foot.ini
|
|
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/foot.service \
|
|
${./systemd-user-service-expected.service}
|
|
'';
|
|
};
|
|
}
|