mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-17 23:14:07 +01:00
73 lines
2.1 KiB
Nix
73 lines
2.1 KiB
Nix
{
|
|
description = "NixOS configuration of Ryan Yin";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
nuenv.url = "github:DeterminateSystems/nuenv";
|
|
};
|
|
|
|
outputs = inputs @ {
|
|
nixpkgs,
|
|
nixos-hardware,
|
|
nuenv,
|
|
...
|
|
}: {
|
|
nixosConfigurations = {
|
|
ai = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs =
|
|
inputs
|
|
// {
|
|
myvars.username = "ryan";
|
|
myvars.userfullname = "Ryan Yin";
|
|
};
|
|
modules = [
|
|
{networking.hostName = "ai";}
|
|
|
|
./configuration.nix
|
|
|
|
../modules/base.nix
|
|
../modules/nixos/base/i18n.nix
|
|
../modules/nixos/base/user-group.nix
|
|
../modules/nixos/base/networking.nix
|
|
|
|
../hosts/idols-ai/hardware-configuration.nix
|
|
../hosts/idols-ai/impermanence.nix
|
|
];
|
|
};
|
|
|
|
shoukei = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs =
|
|
inputs
|
|
// {
|
|
myvars.username = "ryan";
|
|
myvars.userfullname = "Ryan Yin";
|
|
};
|
|
modules = [
|
|
# Building on a USB installer is buggy, lack of disk space, memory, trublesome to setup substituteers, etc.
|
|
# so we disable apple-t2 module here to avoid build kernel during the initial installation, and enable it after the first boot.
|
|
# nixos-hardware.nixosModules.apple-t2
|
|
({pkgs, ...}: {
|
|
networking.hostName = "shoukei";
|
|
boot.kernelPackages = pkgs.linuxPackages_latest; # Use latest kernel for the initial installation.
|
|
# hardware.apple-t2.enableAppleSetOsLoader = true;
|
|
})
|
|
|
|
./configuration.nix
|
|
|
|
../modules/base.nix
|
|
../modules/nixos/base/i18n.nix
|
|
../modules/nixos/base/user-group.nix
|
|
../modules/nixos/base/networking.nix
|
|
|
|
../hosts/12kingdoms-shoukei/hardware-configuration.nix
|
|
../hosts/idols-ai/impermanence.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|