dot_testing/modules/common.nix

32 lines
651 B
Nix
Raw Permalink Normal View History

2023-12-28 00:20:13 -06:00
{ lib, config, pkgs, inputs, ...}:
{
imports = [
./bash.nix
];
environment.systemPackages = [
2023-12-28 00:21:34 -06:00
# is it this? this throws a similar error; no attr st, etc.
2023-12-28 15:27:31 -06:00
inputs.utilpkg.packages.x86_64-linux.st
inputs.utilpkg.packages.x86_64-linux.rebuild
inputs.utilpkg.packages.x86_64-linux.utils
2023-12-28 00:20:13 -06:00
pkgs.man-pages
];
networking.networkmanager.enable = true;
time.timeZone = "America/Chicago";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
users.users.usr = {
isNormalUser = true;
2024-01-15 03:52:45 -06:00
extraGroups = [ "wheel" "networkmanager" ];
2023-12-28 00:20:13 -06:00
initialPassword = "usr";
};
}