21 lines
340 B
Nix
21 lines
340 B
Nix
{ pkgs, ... }:
|
|
{
|
|
nixpkgs = {
|
|
config.allowUnfree = true;
|
|
};
|
|
nix = {
|
|
gc.options = "--delete-older-than 30d";
|
|
optimise.automatic = true;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
|
|
users.users = {
|
|
jay = {
|
|
description = "Jay Carter";
|
|
shell = pkgs.bash;
|
|
};
|
|
};
|
|
}
|