mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
add WCE-Overseer to flake
This commit is contained in:
parent
ede366094d
commit
af598c8a77
1 changed files with 38 additions and 46 deletions
84
flake.nix
84
flake.nix
|
|
@ -16,54 +16,46 @@
|
|||
...
|
||||
} @ inputs: {
|
||||
nixosConfigurations = {
|
||||
Parzival = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./hosts/Parzival
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
Parzival = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
Parzival-Mobile = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./hosts/Parzival-Mobile
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
modules = [
|
||||
./hosts/Parzival
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
};
|
||||
Parzival-Mobile = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./hosts/Parzival-Mobile
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
};
|
||||
WCE-Overseer = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./hosts/WCE-Overseer
|
||||
home-manager.nixosModules.home-manager
|
||||
sops-nix.nixosModules.sops
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
#outputs = inputs: let
|
||||
# system = "x86_64-linux";
|
||||
# inherit (inputs.nixpkgs) lib;
|
||||
|
||||
# overlays = [];
|
||||
|
||||
# pkgs = import inputs.nixpkgs {
|
||||
# inherit system overlays;
|
||||
# config.allowUnfree = true;
|
||||
# config.android_sdk.accept_license = true;
|
||||
# };
|
||||
|
||||
# ns = host: (lib.nixosSystem {
|
||||
# specialArgs = {inherit pkgs inputs;};
|
||||
# modules = [
|
||||
# (./hosts + "/${host}")
|
||||
# inputs.home-manager.nixosModules.home-manager
|
||||
# inputs.sops-nix.nixosModules.sops
|
||||
# ];
|
||||
# });
|
||||
#in {nixosConfigurations = lib.attrsets.genAttrs ["Parzival" "Parzival-Mobile" "WCE-Overseer"] ns;};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue