Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion systems/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ in
system = "x86_64-linux";
project = config;
};
homes = { inherit (config.homes) "maya:x86_64-linux" "minion:x86_64-linux"; };
homes = { inherit (config.homes) "maya:x86_64-linux"; };
};
config.systems.nixos."ocicat" = {
pkgs = nixpkgs.x86_64-linux;
Expand Down
9 changes: 0 additions & 9 deletions systems/marbled/locale.nix

This file was deleted.

17 changes: 17 additions & 0 deletions systems/maya/keyboard.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
#
# SPDX-License-Identifier: MIT

{
services.keyd = {
enable = true;

keyboards.default = {
ids = [
"*"
"-1234:5678" # Espanso virtual keyboard
];
settings.main.capslock = "overload(control, esc)";
};
};
}
32 changes: 32 additions & 0 deletions systems/maya/locale.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
#
# SPDX-License-Identifier: MIT

{
# Set your time zone.
time.timeZone = "Europe/London";

# Select internationalisation properties.
i18n.defaultLocale = "en_GB.UTF-8";

i18n.extraLocaleSettings = {
LC_ADDRESS = "en_GB.UTF-8";
LC_IDENTIFICATION = "en_GB.UTF-8";
LC_MEASUREMENT = "en_GB.UTF-8";
LC_MONETARY = "en_GB.UTF-8";
LC_NAME = "en_GB.UTF-8";
LC_NUMERIC = "en_GB.UTF-8";
LC_PAPER = "en_GB.UTF-8";
LC_TELEPHONE = "en_GB.UTF-8";
LC_TIME = "en_GB.UTF-8";
};

# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};

# Configure console keymap
console.keyMap = "us";
}
File renamed without changes.