41 lines
1018 B
Nix
41 lines
1018 B
Nix
{
|
|
description = "NixOS configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
home-manager.url = "github:nix-community/home-manager/release-25.05";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = { nixpkgs, home-manager, ... } @ inputs: let
|
|
system = "x86_64-linux";
|
|
host = "vm";
|
|
profile = "vm";
|
|
username = "josh";
|
|
hashedPassword = "$y$j9T$igQhJ//kdFNFqRtbSNo2n0$df8woba07tNf6LigWbUWZe2ReIDxYaTT6/StR0SsdH2";
|
|
in {
|
|
nixosConfigurations = {
|
|
nixos = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./configuration.nix
|
|
];
|
|
};
|
|
|
|
nixosvm = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
specialArgs = {
|
|
inherit inputs;
|
|
inherit host;
|
|
inherit profile;
|
|
inherit username;
|
|
inherit hashedPassword;
|
|
};
|
|
modules = [
|
|
./hosts/${host}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
} |