20 lines
296 B
Nix
20 lines
296 B
Nix
{ pkgs, ... }:
|
|
{
|
|
nixpkgs = {
|
|
config.allowUnfree = true;
|
|
};
|
|
nix = {
|
|
optimize.automatic = true;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
|
|
users.users = {
|
|
jay = {
|
|
description = "Jay Carter";
|
|
shell = pkgs.bash;
|
|
};
|
|
};
|
|
}
|