ad45284197
Note: not the actual initial commit. I swear I will stop repeatedly force pushing to this single commit eventually ok.
34 lines
521 B
Nix
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;
|
|
};
|
|
};
|
|
}
|