diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-09 17:21:25 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-09 17:21:25 -0800 |
commit | 2cd48e21a56be915d12c4d1892fa20720277814a (patch) | |
tree | 6fbc3f465c4ee7bdf29efad750da81498b303844 /modules/systems | |
parent | systems: more packages (diff) | |
download | world-2cd48e21a56be915d12c4d1892fa20720277814a.tar.gz |
systems: ensure latest kernel and tmp on tmpfs
Diffstat (limited to 'modules/systems')
-rw-r--r-- | modules/systems/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/systems/default.nix b/modules/systems/default.nix index d69e31a..7e522d6 100644 --- a/modules/systems/default.nix +++ b/modules/systems/default.nix @@ -5,6 +5,9 @@ ./ssh.nix ]; + boot.kernelPackages = pkgs.linuxPackages_latest; + boot.tmpOnTmpfs = true; + # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; console = { |