infra/modules/nixos/community-builder/default.nix

30 lines
522 B
Nix
Raw Normal View History

2024-09-24 10:31:46 +10:00
{
config,
inputs,
pkgs,
...
}:
2024-07-24 19:05:26 +10:00
{
imports = [
2024-09-05 17:59:59 +10:00
"${inputs.self}/modules/shared/community-builder.nix"
inputs.nix-index-database.nixosModules.nix-index
./users.nix
];
2024-09-24 10:31:46 +10:00
users.motd = config.nixCommunity.motd;
2024-09-05 17:59:59 +10:00
programs.mosh = {
enable = true;
2024-09-05 17:59:59 +10:00
withUtempter = false;
};
2024-09-05 17:59:59 +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
}