Add common configuration file.

This commit is contained in:
jay
2025-06-29 00:18:48 -04:00
parent 65c34a6861
commit 854784d501

View File

@@ -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;
};
};
}