# Configuration Files for NixOS This is my system configuration, targeting workstations. It's intended to be private while not containing sensitive information. To use, clone Repository in `/etc/nix-config` and put the following in `/etc/nixos/configuration.nix`: ```nix { config, pkgs, ... }: { imports = [ ./hardware-configuration.nix /etc/nix-config/config.nix ]; system.stateVersion = ""; } ``` Adding a new File is as simple as ```bash echo '{ config, pkgs, ... }: { }' > yourNewFile.nix ```