create base.nix

This commit is contained in:
Richie Cahill
2024-04-13 15:18:37 -04:00
parent 1fab349ff4
commit c67c8d74dc
6 changed files with 14 additions and 41 deletions

13
modules/base.nix Normal file
View File

@ -0,0 +1,13 @@
{ lib, ... }:
{
nixpkgs.config.allowUnfree = lib.mkDefault true;
users = {
mutableUsers = lib.mkDefault false;
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
}