45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{
|
|
description = "hms' nixos configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
|
home-manager.url = "github:nix-community/home-manager/release-25.11";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
nixos-wsl.url = "github:nix-community/NixOS-WSL/release-25.11";
|
|
nixos-wsl.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs =
|
|
{ nixpkgs, home-manager, nixos-wsl, ... }@inputs:
|
|
{
|
|
nixosConfigurations.selune = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./hosts/selune
|
|
home-manager.nixosModules.home-manager
|
|
./home
|
|
];
|
|
};
|
|
nixosConfigurations.shar = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./hosts/shar
|
|
home-manager.nixosModules.home-manager
|
|
./home
|
|
];
|
|
};
|
|
nixosConfigurations.elistraee = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./hosts/elistraee
|
|
nixos-wsl.nixosModules.default
|
|
home-manager.nixosModules.home-manager
|
|
./home
|
|
];
|
|
};
|
|
homeManagerModules.default = ./home;
|
|
};
|
|
}
|