Files
nixverse/nodes/hosts/common/configuration.nix

27 lines
411 B
Nix

{ pkgs, ... }:
{
imports = [
./programs/firefox.nix
./programs/git.nix
];
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;
};
};
}