Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f73aae6f9513
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6e54e9253a28
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jul 1, 2018

  1. Copy the full SHA
    6e54e92 View commit details
Showing with 5 additions and 0 deletions.
  1. +4 −0 nixos/modules/services/networking/iwd.nix
  2. +1 −0 pkgs/os-specific/linux/iwd/default.nix
4 changes: 4 additions & 0 deletions nixos/modules/services/networking/iwd.nix
Original file line number Diff line number Diff line change
@@ -28,6 +28,10 @@ in {

serviceConfig.ExecStart = "${pkgs.iwd}/libexec/iwd";
};

systemd.tmpfiles.rules = [
"d /var/lib/iwd 0700 root root -"
];
};

meta.maintainers = with lib.maintainers; [ mic92 ];
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/iwd/default.nix
Original file line number Diff line number Diff line change
@@ -35,6 +35,7 @@ in stdenv.mkDerivation rec {

configureFlags = [
"--with-dbus-datadir=$(out)/etc/"
"--localstatedir=/var"
"--disable-systemd-service"
];