NixOS configuration 馃獎
1{ inputs, ... }: 2{ 3 imports = [ 4 inputs.agenix-rekey.flakeModule 5 6 ../../systems 7 8 ./modules.nix # Inject modules into flake 9 ./lib # add my own library 10 ./args.nix # Pass arguments used by the flake 11 ./shell.nix # A development environment for this system 12 13 ]; 14}