feat: adds lily to flake

This commit is contained in:
Ahwx 2025-05-16 01:35:44 +02:00
parent 68c1a1f808
commit 1d91a363df

View file

@ -32,7 +32,14 @@
nix-gaming.url = "github:fufexan/nix-gaming";
};
outputs = { self, nixpkgs, catppuccin, agenix, ...} @ inputs:
outputs =
{
self,
nixpkgs,
catppuccin,
agenix,
...
}@inputs:
let
overlays = import ./overlays/default.nix;
username = "liv";
@ -47,10 +54,13 @@
nixosConfigurations = {
desktop = nixpkgs.lib.nixosSystem {
inherit system;
modules = [(
import ./hosts/desktop
)];
specialArgs = { host="desktop"; inherit self inputs username ; };
modules = [
(import ./hosts/desktop)
];
specialArgs = {
host = "desktop";
inherit self inputs username;
};
};
sakura = nixpkgs.lib.nixosSystem {
inherit system;
@ -58,7 +68,10 @@
(import ./hosts/sakura)
agenix.nixosModules.default
];
specialArgs = { host="sakura"; inherit self inputs username ; };
specialArgs = {
host = "sakura";
inherit self inputs username;
};
};
yoshino = nixpkgs.lib.nixosSystem {
inherit system;
@ -66,7 +79,10 @@
(import ./hosts/yoshino)
agenix.nixosModules.default
];
specialArgs = { host="yoshino"; inherit self inputs username ; };
specialArgs = {
host = "yoshino";
inherit self inputs username;
};
};
ichiyo = nixpkgs.lib.nixosSystem {
inherit system;
@ -74,7 +90,10 @@
(import ./hosts/ichiyo)
agenix.nixosModules.default
];
specialArgs = { host="ichiyo"; inherit self inputs username ; };
specialArgs = {
host = "ichiyo";
inherit self inputs username;
};
};
violet = nixpkgs.lib.nixosSystem {
inherit system;
@ -82,7 +101,10 @@
(import ./hosts/violet)
agenix.nixosModules.default
];
specialArgs = { host="violet"; inherit self inputs username; };
specialArgs = {
host = "violet";
inherit self inputs username;
};
};
dandelion = nixpkgs.lib.nixosSystem {
inherit system;
@ -90,15 +112,32 @@
(import ./hosts/dandelion)
agenix.nixosModules.default
];
specialArgs = { host="dandelion"; inherit self inputs username; };
specialArgs = {
host = "dandelion";
inherit self inputs username;
};
};
lily = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
(import ./hosts/lily)
agenix.nixosModules.default
];
specialArgs = {
host = "lily";
inherit self inputs username;
};
};
vm = nixpkgs.lib.nixosSystem {
inherit system;
modules = [(
import ./hosts/vm
)];
specialArgs = { host="vm"; inherit self inputs username ; };
modules = [
(import ./hosts/vm)
];
specialArgs = {
host = "vm";
inherit self inputs username;
};
};
};
};