hosts/dunamis/nix.nix: replace with lix hosts/eldrid/nix.nix: replace with lix hosts/sarien/nix.nix: replace with lix packages/wl-tray-bridge/default.nix: remove Signed-off-by: unexplrd <unexplrd@linerds.us>
19 lines
387 B
Nix
19 lines
387 B
Nix
# TODO: better file name
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
nix = {
|
|
package = pkgs.lix;
|
|
channel.enable = false;
|
|
settings.experimental-features = ["nix-command" "flakes"];
|
|
daemonCPUSchedPolicy = "idle";
|
|
sshServe = {
|
|
enable = true;
|
|
write = true;
|
|
keys = map (f: builtins.readFile f) config.users.users.user.openssh.authorizedKeys.keyFiles;
|
|
};
|
|
};
|
|
}
|