mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:59:23 +08:00
26 lines
490 B
Nix
26 lines
490 B
Nix
inputs:
|
|
{
|
|
config =
|
|
{
|
|
nixos =
|
|
{
|
|
system =
|
|
{
|
|
fileSystems =
|
|
{
|
|
mount =
|
|
{
|
|
vfat."/dev/disk/by-partlabel/test-boot" = "/boot";
|
|
btrfs."/dev/disk/by-partlabel/test-root1" = { "/nix" = "/nix"; "/nix/rootfs/current" = "/"; };
|
|
};
|
|
rollingRootfs = {};
|
|
};
|
|
nixpkgs.march = "znver4";
|
|
network = {};
|
|
};
|
|
hardware.cpus = [ "amd" ];
|
|
services.sshd = {};
|
|
};
|
|
};
|
|
}
|