zsh.nix/flake.nix
jiriks74 87c34ab72a
Some checks failed
Perform checks / formatting (push) Failing after 16s
Perform checks / nix_flake_check (push) Failing after 37s
feat(ci/cd): Set up Hydra
2025-01-10 08:24:51 +01:00

67 lines
1.7 KiB
Nix

{
description = "jiriks74's ZSH configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
...
} @ inputs: let
inherit (self) outputs;
# Supported systems for your flake packages, shell, etc.
systems = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
# This is a function that generates an attribute by calling a function you
# pass to it, with each system as an argument
forAllSystems = nixpkgs.lib.genAttrs systems;
in {
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
homeManagerModules = {
default = {
config,
lib,
pkgs,
...
}: {
inport = ./zsh.nix;
};
withPackages = {
config,
lib,
pkgs,
...
}: {
imports = [
./zsh.nix
./packages.nix
];
};
};
hydraJobs = {
# Check the flake (flake.lock integrity, formatting, etc.)
flakeCheck = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixFlakes.checks.self);
# Test evaluation of Home Manager modules
homeManagerModules = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.nixFlakes.evalJobs {
flake = self;
paths = [ "homeManagerModules.default" ];
};
withPackages = nixpkgs.legacyPackages.${system}.nixFlakes.evalJobs {
flake = self;
paths = [ "homeManagerModules.withPackages" ];
};
});
};
};
}