From f4654abf81e08b80076873ef52de6031f8184b08 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Thu, 10 Oct 2024 17:32:44 +0100 Subject: [PATCH] Switch to the pt layout --- nix-shells/prism.nix | 14 -------------- nix/home.nix | 4 ++-- nix/nixos/flake.nix | 2 +- 3 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 nix-shells/prism.nix diff --git a/nix-shells/prism.nix b/nix-shells/prism.nix deleted file mode 100644 index 6ae0fed1..00000000 --- a/nix-shells/prism.nix +++ /dev/null @@ -1,14 +0,0 @@ -let - nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; - pkgs = import nixpkgs { config = {}; overlays = []; }; -in - -pkgs.mkShellNoCC { - packages = with pkgs; [ - prismlauncher - ]; - - shellHook = '' - prismlauncher - ''; -} diff --git a/nix/home.nix b/nix/home.nix index e5201a0c..a6dcec1c 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -149,8 +149,8 @@ in "org/gnome/desktop/input-sources" = { current = mkUint32 0; - mru-sources = [ (mkTuple [ "xkb" "us+altgr-intl" ]) (mkTuple [ "xkb" "us+intl" ]) ]; - sources = [ (mkTuple [ "xkb" "us+altgr-intl" ]) ]; + mru-sources = [ (mkTuple [ "xkb" "pt" ]) (mkTuple [ "xkb" "pt" ]) ]; + sources = [ (mkTuple [ "xkb" "pt" ]) ]; xkb-options = [ "caps:ctrl_modifier" ]; }; diff --git a/nix/nixos/flake.nix b/nix/nixos/flake.nix index 9cf5bccd..82e387cb 100644 --- a/nix/nixos/flake.nix +++ b/nix/nixos/flake.nix @@ -81,7 +81,7 @@ LC_TIME = "pt_PT.UTF-8"; }; services.xserver.xkb = { - layout = "us"; + layout = "pt"; variant = ""; }; system.stateVersion = "24.05";