feat: adds daisy host to flake

This commit is contained in:
Ahwx 2025-08-02 01:17:19 +02:00
parent 0547c948ab
commit ff942eb88a

View file

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