Compare commits

..

No commits in common. "1d91a363dfc8acd5f06bc1000c2c650042e11a62" and "c2a9740c77adefa361e07ac9325e28dce069fd4d" have entirely different histories.

2 changed files with 66 additions and 106 deletions

View file

@ -48,7 +48,6 @@
- [ichiyo](hosts/ichiyo/): Laptop (ichiyo) specific configuration
- [violet](hosts/violet/): Server (violet) specific configuration
- [dandelion](hosts/dandelion/): Server (dandelion) specific configuration
- [lily](hosts/lily/): Router (lily) specific configuration
- [modules](modules): modularized NixOS configurations
- [core](modules/core/): core NixOS configuration
- [homes](modules/home/): my [Home-Manager](https://github.com/nix-community/home-manager) config

View file

@ -32,14 +32,7 @@
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";
@ -54,13 +47,10 @@
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;
@ -68,10 +58,7 @@
(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;
@ -79,10 +66,7 @@
(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;
@ -90,10 +74,7 @@
(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;
@ -101,10 +82,7 @@
(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;
@ -112,32 +90,15 @@
(import ./hosts/dandelion)
agenix.nixosModules.default
];
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;
};
specialArgs = { host="dandelion"; 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 ; };
};
};
};