NixOS configuration 馃獎
1{ inputs, ... }:
2{
3 # This flake, currently just uses pure nixOS systems
4 # set the system flake output here
5 systems = [ "x86_64-linux" ];
6
7 perSystem =
8 { system, ... }:
9 {
10 # control how packages are built within the flake
11 _module.args.pkgs = import inputs.nixpkgs {
12 inherit system;
13
14 config.allowUnfree = true;
15 overlays = [ ];
16 };
17 };
18}