Add common configuration file.
This commit is contained in:
19
nodes/common/configuration.nix
Normal file
19
nodes/common/configuration.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user