From e5310e428ed0976c78cabdfec8294aba1a2f61e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Du=C3=9Fin?= Date: Fri, 23 May 2025 10:49:49 +0200 Subject: [PATCH 1/3] update flake for systems --- nix/flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nix/flake.lock b/nix/flake.lock index 9f1d8b5..6fe6987 100644 --- a/nix/flake.lock +++ b/nix/flake.lock @@ -23,11 +23,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1744098102, - "narHash": "sha256-tzCdyIJj9AjysC3OuKA+tMD/kDEDAF9mICPDU7ix0JA=", + "lastModified": 1746904237, + "narHash": "sha256-3e+AVBczosP5dCLQmMoMEogM57gmZ2qrVSrmq9aResQ=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c8cd81426f45942bb2906d5ed2fe21d2f19d95b7", + "rev": "d89fc19e405cb2d55ce7cc114356846a0ee5e956", "type": "github" }, "original": { @@ -46,11 +46,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1744367198, - "narHash": "sha256-UhO5nzTart6XtZHtAL07+MjkOjmmpi7vJF648tF9WFs=", + "lastModified": 1747196235, + "narHash": "sha256-41VHCKCevxL7Luqwc9A2r3DPTOz6Ky+nRkHp1eurtmA=", "owner": "nix-community", "repo": "NUR", - "rev": "704f05243844699fea06113ae730310536a3c38e", + "rev": "2378adbb9ebb4654dc0d41786609839b6ad4a7ef", "type": "github" }, "original": { From 22d96f91449cbc1b78602bb0d4aac218920fe01f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Du=C3=9Fin?= Date: Fri, 23 May 2025 10:51:19 +0200 Subject: [PATCH 2/3] comment out fcitx fcitx in the configuration seems to overwrite my xkb options later in the configuration file. --- nix/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index d3c9fc4..fcfc6b0 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -49,10 +49,10 @@ # Internationalisation i18n = { defaultLocale = "en_US.UTF-8"; - inputMethod = { - enable = true; - type = "fcitx5"; - }; + # inputMethod = { + # enable = true; + # type = "fcitx5"; + # }; }; console = { font = "Lat2-Terminus16"; From 4f1d926d62c812e075039ca6b33358fbccc980ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Du=C3=9Fin?= Date: Fri, 23 May 2025 10:53:15 +0200 Subject: [PATCH 3/3] add clang to system packages I consider C support essential for my daily needs and different compiler versions not too important for my workstation needs when I work on projects alone. --- nix/chell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/chell.nix b/nix/chell.nix index f42d8df..0d4952e 100644 --- a/nix/chell.nix +++ b/nix/chell.nix @@ -3,6 +3,9 @@ boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; # Cross-compilation for aarch64 through QEMU environment.systemPackages = with pkgs; [ + clang + clang-manpages + clang-tools mangohud obs-studio ];