]> gitweb.ps.run Git - flake_server/blob - flake.nix
Add flake.nix
[flake_server] / flake.nix
1 {
2   description = "NixOS Flake";
3
4   inputs = {
5     nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
6     flake-utils.url = "github:numtide/flake-utils";
7   };
8
9   outputs = { self, nixpkgs, flake-utils, ... }: {
10     nixosConfigurations = {
11       hostname = nixpkgs.lib.nixosSystem {
12         system = "x86_64-linux";
13         modules = [
14           ./configuration.nix
15         ];
16       };
17     };
18   };
19 }
20