dotfiles/modules/os/core/shared/default.nix
eriedaberrie 8058f3d93a Initial commit
Note: not the actual initial commit.

I swear I will stop repeatedly force pushing to this single commit eventually
ok.
2024-08-22 10:35:36 -07:00

34 lines
521 B
Nix

{ pkgs, ... }:
{
imports = [
./nix.nix
./secrets.nix
# inputs.nur.nixosModules.nur
];
boot = {
kernelPackages = pkgs.linuxPackages_latest;
tmp = {
useTmpfs = true;
tmpfsSize = "100%";
};
};
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
environment.localBinInPath = true;
programs = {
command-not-found.enable = false;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}