configure rabbi gerzi

This commit is contained in:
Yisroel Baum 2026-07-02 11:51:07 +03:00
parent 4b043686fe
commit bf009cbcdd
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
4 changed files with 68 additions and 10 deletions

View file

@ -20,6 +20,10 @@
url = "git+https://git.yisroelbaum.com/yisroelbaum/MyResume";
inputs.nixpkgs.follows = "nixpkgs";
};
rabbi-gerzi = {
url = "git+https://git.yisroelbaum.com/yisroelbaum/Rabbi_Gerzi";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@ -30,20 +34,24 @@
sops-nix,
tide,
resume,
rabbi-gerzi,
...
}:
let
system = "x86_64-linux";
domainName = "yisroelbaum.com";
in {
in
{
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
modules = [
./configuration.nix
./discourse.nix
./tide.nix
./rabbi-gerzi.nix
home-manager.nixosModules.home-manager
sops-nix.nixosModules.sops
tide.nixosModules.tide
rabbi-gerzi.nixosModules.default
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
@ -52,14 +60,16 @@
];
specialArgs = { inherit domainName resume; };
};
devShells."${system}".default = let
pkgs = import nixpkgs { inherit system; };
in pkgs.mkShell {
buildInputs = with pkgs; [
nixos-rebuild
sops
age
];
};
devShells."${system}".default =
let
pkgs = import nixpkgs { inherit system; };
in
pkgs.mkShell {
buildInputs = with pkgs; [
nixos-rebuild
sops
age
];
};
};
}