Find a file
2025-03-16 00:45:02 +01:00
base.nix add auto update 2025-02-28 19:38:26 +01:00
pp-forgejo-runner.nix fix scheme 2024-02-12 23:08:04 +01:00
pp-forgejo.nix change to keycloak 24 2025-03-16 00:45:02 +01:00
pp-gitea.nix add push to create 2023-08-19 23:51:07 +02:00
pp-keycloak.nix change to keycloak 24 2025-03-16 00:45:02 +01:00
pp-node-exporter.nix fix 2025-02-23 14:45:20 +01:00
pp-woodpecker.nix updated upstream hash 2023-10-03 16:56:18 -04:00
README.md update readme a little 2025-02-23 13:32:03 +01:00
TODO.md add todo 2023-04-20 00:31:42 +02:00

Some module for Nixos

Modules can be imported with fetchurl like this:

  imports =
    [
      ./hardware-configuration.nix
      (builtins.fetchurl {
         url = "https://git.mineau.eu/histausse/base-nix-vm/raw/branch/master/base.nix";
         sha256 = "0r7rj0in3f5m171sx0savbynijcj3bfnnm9zi60l1l4v5l6dgv78";
       })

    ];

Where the value of sha256 can be found using nix-prefetch-url like this:

$ nix-prefetch-url https://git.mineau.eu/histausse/nixos-modules/raw/branch/main/base.nix
path is '/nix/store/kql0k090xn40jm1nh0369ilba5lb8akb-base.nix'
1j4wd5fxmn3myakwsjd9vp42s1i6ypjwyj9z98hi6q903ldxwzaa

To test a derivation:

# nix repl '<nixpkgs/nixos>'