summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2020-02-12 19:28:34 -0600
committerWill Dietz <w@wdtz.org>2020-02-12 19:29:28 -0600
commitac8a92543babf3cc9c500a69d37905d286be261f (patch)
tree69cf8d5a48c61b7e92225bb0791f94b3ddfb533f /nixos/modules
parentf9b5108d916d7e47872b8001f137afa2b099309d (diff)
iwd: drop tmpfiles snippet, services use StateDirectory already
Originally added in [1], and iwd added StateDirectory to its services in [2] -- 4 days later. ("StateDirectory wasn't used when tmpfile snippet was added to NixOS") (nevermind git -> release delay) [1] 6e54e9253a28d1fe5c507b76ce45965c31ecab70 [2] upstream iwd git rev: 71ae0bee9c6320dae0083ed8c1700bc8fff1defb
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/iwd.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/nixos/modules/services/networking/iwd.nix b/nixos/modules/services/networking/iwd.nix
index 839fa48d9a42..6be67a8b96f4 100644
--- a/nixos/modules/services/networking/iwd.nix
+++ b/nixos/modules/services/networking/iwd.nix
@@ -23,12 +23,7 @@ in {
systemd.packages = [ pkgs.iwd ];
systemd.services.iwd.wantedBy = [ "multi-user.target" ];
-
- systemd.tmpfiles.rules = [
- "d /var/lib/iwd 0700 root root -"
- "d /var/lib/ead 0700 root root -"
- ];
};
- meta.maintainers = with lib.maintainers; [ mic92 ];
+ meta.maintainers = with lib.maintainers; [ mic92 dtzWill ];
}