mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-09 10:31:06 +01:00
We can remove duplicate entries and redirect to the nixpkgs entry. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
77 lines
1.8 KiB
Nix
77 lines
1.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.services.home-manager.autoUpgrade;
|
|
|
|
homeManagerPackage = pkgs.callPackage ../../home-manager {
|
|
path = config.programs.home-manager.path;
|
|
};
|
|
|
|
autoUpgradeApp = pkgs.writeShellApplication {
|
|
name = "home-manager-auto-upgrade";
|
|
text = ''
|
|
echo "Update Nix's channels"
|
|
nix-channel --update
|
|
echo "Upgrade Home Manager"
|
|
home-manager switch
|
|
'';
|
|
runtimeInputs = with pkgs; [
|
|
homeManagerPackage
|
|
nix
|
|
];
|
|
};
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.pinage404 ];
|
|
|
|
options = {
|
|
services.home-manager.autoUpgrade = {
|
|
enable = lib.mkEnableOption ''
|
|
the Home Manager upgrade service that periodically updates your Nix
|
|
channels before running `home-manager switch`'';
|
|
|
|
frequency = lib.mkOption {
|
|
type = lib.types.str;
|
|
example = "weekly";
|
|
description = ''
|
|
The interval at which the Home Manager auto upgrade is run.
|
|
This value is passed to the systemd timer configuration
|
|
as the `OnCalendar` option.
|
|
The format is described in
|
|
{manpage}`systemd.time(7)`.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.home-manager.autoUpgrade" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user = {
|
|
timers.home-manager-auto-upgrade = {
|
|
Unit.Description = "Home Manager upgrade timer";
|
|
|
|
Install.WantedBy = [ "timers.target" ];
|
|
|
|
Timer = {
|
|
OnCalendar = cfg.frequency;
|
|
Unit = "home-manager-auto-upgrade.service";
|
|
Persistent = true;
|
|
};
|
|
};
|
|
|
|
services.home-manager-auto-upgrade = {
|
|
Unit.Description = "Home Manager upgrade";
|
|
Service.ExecStart = "${autoUpgradeApp}/bin/home-manager-auto-upgrade";
|
|
};
|
|
};
|
|
};
|
|
}
|