mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-19 00:20:32 +03:00

After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev 0128fbb0a5
result/bin/apply-formatting $NIXPKGS_PATH
78 lines
1.7 KiB
Nix
78 lines
1.7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.u9fs;
|
|
in
|
|
{
|
|
|
|
options = {
|
|
|
|
services.u9fs = {
|
|
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Whether to run the u9fs 9P server for Unix.";
|
|
};
|
|
|
|
listenStreams = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ "564" ];
|
|
example = [ "192.168.16.1:564" ];
|
|
description = ''
|
|
Sockets to listen for clients on.
|
|
See {command}`man 5 systemd.socket` for socket syntax.
|
|
'';
|
|
};
|
|
|
|
user = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "nobody";
|
|
description = "User to run u9fs under.";
|
|
};
|
|
|
|
extraArgs = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
example = "-a none";
|
|
description = ''
|
|
Extra arguments to pass on invocation,
|
|
see {command}`man 4 u9fs`
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
systemd = {
|
|
sockets.u9fs = {
|
|
description = "U9fs Listening Socket";
|
|
wantedBy = [ "sockets.target" ];
|
|
after = [ "network.target" ];
|
|
inherit (cfg) listenStreams;
|
|
socketConfig.Accept = "yes";
|
|
};
|
|
services."u9fs@" = {
|
|
description = "9P Protocol Server";
|
|
reloadIfChanged = true;
|
|
requires = [ "u9fs.socket" ];
|
|
serviceConfig = {
|
|
ExecStart = "-${pkgs.u9fs}/bin/u9fs ${cfg.extraArgs}";
|
|
StandardInput = "socket";
|
|
StandardError = "journal";
|
|
User = cfg.user;
|
|
AmbientCapabilities = "cap_setuid cap_setgid";
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|