2024-12-29 19:39:14 +08:00
|
|
|
{
|
|
|
|
description = "Andrei Jiroh's NixOS configurations";
|
|
|
|
|
|
|
|
# try to be in-sync with the nix-channels
|
|
|
|
inputs = {
|
2025-01-08 22:11:59 +08:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
home-manager.url = "github:nix-community/home-manager/master";
|
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/0.1";
|
|
|
|
vscode-server.url = "github:nix-community/nixos-vscode-server";
|
2024-12-29 19:39:14 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
home-manager,
|
|
|
|
nixos-hardware,
|
|
|
|
determinate,
|
|
|
|
vscode-server
|
|
|
|
}: {
|
|
|
|
nixosConfigurations = {
|
|
|
|
stellapent-cier = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
2025-01-08 22:11:59 +08:00
|
|
|
./hosts/stellapent-cier/configuration.nix
|
|
|
|
|
|
|
|
# load Determinate Nix and the rest
|
2024-12-29 19:39:14 +08:00
|
|
|
determinate.nixosModules.default
|
|
|
|
vscode-server.nixosModules.default
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|