diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-05-21 15:31:08 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-05-21 15:31:08 -0700 |
| commit | 7f73c9eee033fbc2febcdeb13d891439c8f792b8 (patch) | |
| tree | 4cb4700e8b205aa34653f0704e3c8bcc671d8a84 /flake.nix | |
| parent | fe73a9bd84601a6d1850654b7b0190fbfa11031b (diff) | |
| download | nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.tar nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.tar.gz nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.tar.bz2 nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.tar.lz nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.tar.xz nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.tar.zst nix-7f73c9eee033fbc2febcdeb13d891439c8f792b8.zip | |
Add prometheus
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -356,6 +356,21 @@ ]; }; + prometheus = nixpkgs.lib.nixosSystem { + specialArgs = { inherit inputs outputs; }; + modules = [ + disko.nixosModules.disko + ./hosts/prometheus + home-manager.nixosModules.home-manager { + #home-manager.sharedModules = [ sops-nix.homeManagerModules.sops ]; + home-manager.users.root = import ./home/root/prometheus.nix; + home-manager.users.nipsy = import ./home/nipsy/prometheus.nix; + home-manager.users.trent = import ./home/trent/prometheus.nix; + } + #sops-nix.nixosModules.sops + ]; + }; + richese = nixpkgs.lib.nixosSystem rec { specialArgs = { inherit inputs outputs; }; modules = [ |
