feat(mdatp): add mdatp package and its dependencies to flake.nix and hosts/default.nix

- Add flake-utils_2 to flake.lock
- Add mdatp package from epetousis/nix-mdatp
- Update systems input to systems_3
- Enable mdatp service in default host configuration
- Add mdatp to flake.nix inputs section
This commit is contained in:
2026-07-14 13:58:56 +02:00
parent 582faec359
commit 0893f80600
3 changed files with 65 additions and 1 deletions
Generated
+56 -1
View File
@@ -91,6 +91,24 @@
"type": "github"
}
},
"flake-utils_2": {
"inputs": {
"systems": "systems_2"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"git-hooks-nix": {
"inputs": {
"flake-compat": "flake-compat_2",
@@ -170,6 +188,27 @@
"type": "github"
}
},
"mdatp": {
"inputs": {
"flake-utils": "flake-utils_2",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1747306795,
"narHash": "sha256-PF4ptTqa3gLzb9ac9SGrFyy4KHd2Z47aUUzkaYmrtvM=",
"owner": "epetousis",
"repo": "nix-mdatp",
"rev": "30936772fbc654604004b7049b727f42a0da6c2f",
"type": "github"
},
"original": {
"owner": "epetousis",
"repo": "nix-mdatp",
"type": "github"
}
},
"nix-index-db": {
"inputs": {
"nixpkgs": [
@@ -264,12 +303,13 @@
"helium": "helium",
"himmelblau": "himmelblau",
"import-tree": "import-tree",
"mdatp": "mdatp",
"nix-index-db": "nix-index-db",
"nixos-24-05": "nixos-24-05",
"nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable",
"sops-nix": "sops-nix",
"systems": "systems_2",
"systems": "systems_3",
"zen-browser": "zen-browser"
}
},
@@ -309,6 +349,21 @@
}
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"systems_3": {
"locked": {
"lastModified": 1689347949,
"narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=",
+5
View File
@@ -99,6 +99,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
mdatp = {
url = "github:epetousis/nix-mdatp";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-index-db = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
+4
View File
@@ -27,6 +27,10 @@
"${self}/work"
inputs.sops-nix.nixosModules.sops
inputs.himmelblau.nixosModules.himmelblau
inputs.mdatp.nixosModules.mdatp
{
services.mdatp.enable = true;
}
];
in {
flake.nixosConfigurations = {