chromebox/flake.nix
Anthony Wang e187328689
Change hostname to chromatic-aberration, enable SSH
Since it's a Chromebox and that name sounds vaguely cool I guess
2025-09-24 21:55:57 -04:00

21 lines
699 B
Nix

{
inputs = {
# This is pointing to an unstable release.
# If you prefer a stable release instead, you can this to the latest number shown here: https://nixos.org/download
# i.e. nixos-24.11
# Use `nix flake update` to update the flake to the latest revision of the chosen release channel.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
inputs@{ self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
nixosConfigurations.chromatic-aberration = nixpkgs.lib.nixosSystem {
modules = [ ./configuration.nix ];
};
formatter.${system} = pkgs.nixfmt-tree;
};
}