29 lines
658 B
Nix
29 lines
658 B
Nix
{
|
|
description = "A simple system flake using some Aux defaults";
|
|
|
|
inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable";
|
|
|
|
outputs =
|
|
inputs@{ nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
hostName = builtins.abort "You need to fill in your hostName"; # Set this variable equal to your hostName
|
|
in
|
|
{
|
|
nixosConfigurations.${hostName} = nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
./configuration.nix
|
|
|
|
{
|
|
networking.hostName = hostName;
|
|
nixpkgs.hostPlatform = system;
|
|
}
|
|
];
|
|
|
|
specialArgs = {
|
|
inherit inputs;
|
|
};
|
|
};
|
|
};
|
|
}
|