From 7ef09a597d1c9afa18535f08e212372e2d196bc9 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Tue, 3 Jun 2025 22:10:04 +0200 Subject: [PATCH 1/2] feat(ymir): add light for managing backlight. --- hosts/ymir/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 6de88d4..3643b30 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -101,6 +101,9 @@ binfmt = true; }; + # Enable light for image control + programs.light.enable = true; + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.crony = { isNormalUser = true; From 3690c598bcf370269d610d9a7ca3cde41a3d3f25 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Wed, 4 Jun 2025 16:10:58 +0200 Subject: [PATCH 2/2] feat(shell): add lazygit setup. --- modules/cross-platform/home-manager/shell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/cross-platform/home-manager/shell.nix b/modules/cross-platform/home-manager/shell.nix index 292ca3d..36b800b 100644 --- a/modules/cross-platform/home-manager/shell.nix +++ b/modules/cross-platform/home-manager/shell.nix @@ -113,5 +113,8 @@ # Install btop programs.btop.enable = true; + + # Install lazygit + programs.lazygit.enable = true; }; }