1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

swayidle: remove unnecessary config wrapper

This commit is contained in:
Robert Helgesson 2022-07-12 12:02:01 +02:00
parent 43ea4c5123
commit 45ef70cc73
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -1,7 +1,6 @@
{ config, pkgs, lib, ... }:
{
config = {
services.swayidle = {
enable = true;
package = config.lib.test.mkStubPackage { };
@ -51,5 +50,4 @@
lib.makeBinPath [ pkgs.bash ]
}'
'';
};
}