Create group and move files into it.

This commit is contained in:
jay
2025-06-29 01:00:11 -04:00
parent 854784d501
commit f9d9dfc52e
7 changed files with 7 additions and 0 deletions

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