29 lines
522 B
Nix
29 lines
522 B
Nix
{
|
|
config,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
"${inputs.self}/modules/shared/community-builder.nix"
|
|
inputs.nix-index-database.nixosModules.nix-index
|
|
./users.nix
|
|
];
|
|
|
|
users.motd = config.nixCommunity.motd;
|
|
|
|
programs.mosh = {
|
|
enable = true;
|
|
withUtempter = false;
|
|
};
|
|
|
|
systemd.services.nixpkgs-clone = {
|
|
serviceConfig.Type = "oneshot";
|
|
startAt = "daily";
|
|
path = [
|
|
pkgs.git
|
|
];
|
|
script = builtins.readFile "${inputs.self}/modules/shared/nixpkgs-clone.bash";
|
|
};
|
|
}
|