feat: adds iris

This commit is contained in:
Ahwx 2025-09-05 18:44:50 +02:00
parent 8818d78bae
commit e7e637b2f6
6 changed files with 125 additions and 0 deletions

View file

@ -138,6 +138,16 @@
inherit self inputs username;
};
};
iris = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
(import ./hosts/iris)
];
specialArgs = {
host = "iris";
inherit self inputs username;
};
};
};
};
}