sisyphus/nixos/modules-old/default.nix

19 lines
401 B
Nix
Raw Normal View History

2023-04-04 12:08:13 +02:00
{ inputs, lib, config, pkgs, ... }:
{
# Nix Flakes
nix.package = pkgs.nixFlakes;
nix.extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
'';
2023-10-01 16:56:12 +02:00
# Select internationalisation properties.
i18n.defaultLocale = "en_GB.UTF-8";
console = {
# font = "Lat2-Terminus16";
useXkbConfig = true; # use xkbOptions in tty.
};
2023-04-04 12:08:13 +02:00
}