mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-03-31 17:50:23 +02:00
15 lines
172 B
Nix
15 lines
172 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./apps.nix
|
|
./extensions.nix
|
|
./gnome.nix
|
|
];
|
|
|
|
dconf.settings = {
|
|
"system/locale" = {
|
|
region = "cs_CZ.UTF-8";
|
|
};
|
|
};
|
|
}
|