aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 6ec3d21..7cfde2f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -55,14 +55,15 @@
};
};
- outputs = inputs@{ nixpkgs, ... }: {
+ outputs = inputs@{self, nixpkgs, ... }: {
nixosConfigurations = {
nixy = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
- (import ./my-pkgs)
-
+ ./my-pkgs
+ ./modules
+
./hardware-setups/tuf.nix
./computers/nixy.nix
@@ -78,14 +79,18 @@
inputs.stylix.nixosModules.stylix
];
};
- nixos = nixpkgs.lib.nixosSystem {
+ nixnode = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
+ ./modules
./hardware-setups/linode.nix
./computers/nixnode.nix
];
};
};
+
+ packages.x86_64-linux.teh-website = (nixpkgs.legacyPackages.x86_64-linux.callPackage ./website { });
};
+
}