This commit is contained in:
@@ -18,34 +18,41 @@
|
||||
nvf.url = "github:notashelf/nvf";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, nix-flatpak, nvf, ... } @ inputs:
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
nix-flatpak,
|
||||
nvf,
|
||||
...
|
||||
}@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
overlays = builtins.attrValues (import ./overlays);
|
||||
in
|
||||
|
||||
{
|
||||
nixosConfigurations = {
|
||||
desktop1 = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs system overlays; };
|
||||
modules = [
|
||||
./hosts/desktop1/configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
inputs.stylix.nixosModules.stylix
|
||||
nvf.nixosModules.default
|
||||
];
|
||||
};
|
||||
laptop1 = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs system overlays; };
|
||||
modules = [
|
||||
./hosts/laptop1/configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
inputs.stylix.nixosModules.stylix
|
||||
nvf.nixosModules.default
|
||||
];
|
||||
};
|
||||
{
|
||||
nixosConfigurations = {
|
||||
desktop1 = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs system overlays; };
|
||||
modules = [
|
||||
./hosts/desktop1/configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
inputs.stylix.nixosModules.stylix
|
||||
nvf.nixosModules.default
|
||||
];
|
||||
};
|
||||
laptop1 = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs system overlays; };
|
||||
modules = [
|
||||
./hosts/laptop1/configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
inputs.stylix.nixosModules.stylix
|
||||
nvf.nixosModules.default
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user