Compare commits

3 Commits

Author SHA1 Message Date
John Lancaster
7fd49dcfd5 changed import method because of a relative path issue 2025-12-07 11:58:11 -06:00
John Lancaster
d0d73e19d2 building for all systems 2025-12-07 11:24:11 -06:00
John Lancaster
db0c0a148e removed hashes 2025-12-07 10:33:32 -06:00
3 changed files with 30 additions and 12 deletions

View File

@@ -34,7 +34,7 @@
};
mkhomeManagerModules = config: [
(self.homeManagerModules.default inputs)
self.homeManagerModules.default
# { inherit (config) extraImports; }
{
user = config.user;
@@ -52,8 +52,10 @@
{
lib = { inherit mkhomeManagerModules; };
homeManagerModules.default = inputs: {
imports = [ ./homeManagerModules ];
homeManagerModules.default = {
imports = [
./homeManagerModules
];
};
nixosModules.default = { config, ... }: {

View File

@@ -13,7 +13,7 @@
../nixosModules/options.nix
# inputs._1password-shell-plugins.hmModules.default
# Commented out because it tries to configure fish shell which we don't use
];
] ++ lib.optional (inputs ? resticprofile) inputs.resticprofile.homeManagerModules.default;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password-cli"

View File

@@ -10,8 +10,10 @@
outputs = { self, nixpkgs, home-manager }:
let
systems = [ "x86_64-linux" "aarch64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs systems;
# Define a function to build the resticprofile package for a given system:
resticprofilePkg = { pkgs, lib, ... }:
resticprofilePkg = pkgs:
pkgs.buildGoModule rec {
pname = "resticprofile";
version = "0.32.0";
@@ -19,12 +21,12 @@
owner = "creativeprojects";
repo = "resticprofile";
rev = "v${version}";
sha256 = "sha256-ezelvyroQG1EW3SU63OVHJ/T4qjN5DRllvPIXnei1Z4="; # source tarball hash
sha256 = "sha256-fmYsoGYppNgbtoX18aF5UHBG9ieYorBJ9JZkwrR+UBI="; # source tarball hash
};
vendorHash = "sha256-M9S6F/Csz7HnOq8PSWjpENKm1704kVx9zDts1ieraTE="; # Correct vendor hash
vendorHash = "sha256-/GVWjOvkYe7xMRjANKIKV6FSU0F5VY1ZP/ppgAJyhvw="; # Correct vendor hash
goPackagePath = "github.com/creativeprojects/resticprofile";
doCheck = false; # Disable tests due to sandboxed build environment
meta = with lib; {
meta = with pkgs.lib; {
description = "Configuration profiles manager and scheduler for restic backup";
homepage = "https://creativeprojects.github.io/resticprofile/";
license = licenses.gpl3Only;
@@ -33,14 +35,28 @@
};
in {
# Provide the package for all supported systems:
packages = nixpkgs.lib.genAttrs systems (system:
let pkgs = import nixpkgs { inherit system; };
in { resticprofile = resticprofilePkg { inherit pkgs; lib = pkgs.lib; }; }
packages = forAllSystems (system:
let
pkgs = import nixpkgs { inherit system; };
in {
resticprofile = resticprofilePkg pkgs;
default = resticprofilePkg pkgs;
}
);
# Provide the Home Manager module
homeManagerModules = {
resticprofile = ./resticprofile.nix;
resticprofile = { config, lib, pkgs, ... }:
let
# Use the package built by this flake
resticprofilePackage = self.packages.${pkgs.system}.resticprofile;
in {
imports = [ ./resticprofile.nix ];
config = lib.mkIf config.programs.resticprofile.enable {
programs.resticprofile.package = lib.mkDefault resticprofilePackage;
};
};
default = self.homeManagerModules.resticprofile;
};
};
}