1
1
Fork 0
deployed-nixos-server-and-apps/server-config/flake.nix

22 lines
446 B
Nix
Raw Normal View History

2023-04-07 11:09:21 -04:00
{
description = "System flake for Linode NixOS server";
inputs = {
2023-06-27 11:26:33 -04:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
2023-04-07 11:09:21 -04:00
};
outputs = inputs@{ nixpkgs, ... }:
{
nixosConfigurations.linode-nixos =
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
nixpkgs.lib.nixosSystem {
modules = [
./configuration.nix
];
};
};
}