diff --git a/nodes/common/configuration.nix b/nodes/common/configuration.nix new file mode 100644 index 0000000..b7a2ec5 --- /dev/null +++ b/nodes/common/configuration.nix @@ -0,0 +1,19 @@ +{ pkgs, ... }: +{ + nixpkgs = { + config.allowUnfree = true; + }; + nix = { + optimize.automatic = true; + extraOptions = '' + experimental-features = nix-command flakes + ''; + }; + + users.users = { + jay = { + description = "Jay Carter"; + shell = pkgs.bash; + }; + }; +}