diff options
| author | Dylan <boss@tehbox.org> | 2025-09-19 11:08:56 +1200 |
|---|---|---|
| committer | Dylan <boss@tehbox.org> | 2025-09-19 11:08:56 +1200 |
| commit | 920ccb1300240961f7559d68e8f9b11a81eb90db (patch) | |
| tree | 8fc8adbe7925fddfff535837dd49af2e2f5fb925 /flake.nix | |
| parent | 12f53416b8591fd9ee9569b40796f355c83f3ce7 (diff) | |
| download | nixos-configuration-920ccb1300240961f7559d68e8f9b11a81eb90db.tar.gz nixos-configuration-920ccb1300240961f7559d68e8f9b11a81eb90db.zip | |
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -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 { }); }; + } |
