add icomidal service to deemz.org

This commit is contained in:
Joeri Exelmans 2025-09-23 15:10:58 +02:00
parent 1bd6e533dc
commit 85ebf3c113
3 changed files with 43 additions and 13 deletions

View file

@ -4,9 +4,13 @@
inputs = {
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-24.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
icomidal = {
url = "git+https://deemz.org/git/joeri/icomidal";
inputs.nixpkgs.follows = "nixpkgs-stable";
};
};
outputs = { self, nixpkgs-stable, nixpkgs-unstable }:
outputs = { self, nixpkgs-stable, nixpkgs-unstable, icomidal }:
let
system = "x86_64-linux";
in {
@ -17,8 +21,8 @@
./t14/configuration.nix
];
};
deemz = nixpkgs-unstable.lib.nixosSystem {
specialArgs = { inherit system; };
deemz = nixpkgs-stable.lib.nixosSystem {
specialArgs = { inherit system; icomidal=icomidal; };
modules = [
./deemz.org/configuration.nix
];