PortValhalla/profiles/Generic/config.nix

53 lines
1.1 KiB
Nix
Raw Normal View History

2024-07-07 23:47:23 +00:00
{ ... }:
let
fs = import ../../lib/modules/partition/fs.nix;
in {
imports = [
2024-07-11 18:44:16 +00:00
../../lib/modules/valhalla.nix
2024-07-07 23:47:23 +00:00
];
config = {
2024-07-11 17:31:50 +00:00
valhalla = {
partition = {
os = {
partitions = {
Boot = {
index = 1;
type = "uefi";
size = "+1G";
format = fs.fat32;
mountPoint = "/boot";
};
2024-07-07 23:47:23 +00:00
2024-07-11 17:31:50 +00:00
Swap = {
index = 2;
type = "swap";
};
2024-07-07 23:47:23 +00:00
2024-07-11 17:31:50 +00:00
OS = {
index = 3;
type = "linux";
format = fs.ext4;
mountPoint = "/";
};
2024-07-07 23:47:23 +00:00
};
};
};
2024-07-08 00:50:50 +00:00
2024-07-11 19:58:46 +00:00
timeZone = "Europe/Zurich";
2024-07-11 20:05:36 +00:00
keyMap = "de_CH-latin1";
keyboardLayout = "ch";
2024-07-11 19:58:46 +00:00
2024-07-11 17:31:50 +00:00
i18n = {
localeSettings =
let defaultLocale = "en_US.UTF-8";
in {
LANG = "de_CH.UTF-8";
LANGUAGE = defaultLocale;
LC_MESSAGE = defaultLocale;
};
};
2024-07-08 00:50:50 +00:00
};
2024-07-07 23:47:23 +00:00
};
}