22 lines
519 B
Nix
22 lines
519 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
imports = [ "${modulesPath}/profiles/base.nix" ];
|
||
|
|
||
|
boot.enableContainers = false;
|
||
|
console.keyMap = "no";
|
||
|
programs.command-not-found.enable = false;
|
||
|
i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ];
|
||
|
documentation.man.enable = false;
|
||
|
documentation.info.enable = false;
|
||
|
security.polkit.enable = lib.mkForce false;
|
||
|
security.audit.enable = false;
|
||
|
|
||
|
system.stateVersion = "22.11";
|
||
|
|
||
|
environment.systemPackages = with pkgs;[
|
||
|
neofetch
|
||
|
fd
|
||
|
ripgrep
|
||
|
];
|
||
|
}
|