From 854784d5010a4434fc415f5d57d6d252d729cc84 Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 29 Jun 2025 00:18:48 -0400 Subject: [PATCH] Add common configuration file. --- nodes/common/configuration.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nodes/common/configuration.nix 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; + }; + }; +}