2024-09-24 10:31:46 +10:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
inputs,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-07-24 19:05:26 +10:00
|
|
|
{
|
2022-12-03 10:08:07 +10:00
|
|
|
imports = [
|
2024-09-05 17:59:59 +10:00
|
|
|
"${inputs.self}/modules/shared/community-builder.nix"
|
2024-09-05 18:00:13 +10:00
|
|
|
inputs.nix-index-database.nixosModules.nix-index
|
2022-12-03 10:08:07 +10:00
|
|
|
./users.nix
|
|
|
|
];
|
2023-04-23 11:48:46 +10:00
|
|
|
|
2024-09-24 10:31:46 +10:00
|
|
|
users.motd = config.nixCommunity.motd;
|
|
|
|
|
2024-09-05 17:59:59 +10:00
|
|
|
programs.mosh = {
|
2024-05-30 00:08:19 +03:00
|
|
|
enable = true;
|
2024-09-05 17:59:59 +10:00
|
|
|
withUtempter = false;
|
2024-05-30 00:08:19 +03:00
|
|
|
};
|
2024-09-05 17:59:59 +10:00
|
|
|
|
2024-09-17 09:31:40 +10:00
|
|
|
systemd.services.nixpkgs-clone = {
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
startAt = "daily";
|
|
|
|
path = [
|
|
|
|
pkgs.git
|
|
|
|
];
|
|
|
|
script = builtins.readFile "${inputs.self}/modules/shared/nixpkgs-clone.bash";
|
|
|
|
};
|
2022-01-09 15:34:55 +01:00
|
|
|
}
|