From 040f988530a2d929ba261ce11f093497bba7d0ec Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sat, 17 Jan 2026 15:00:14 +0100 Subject: [PATCH 1/5] lec --- system-modules/calendar/lec.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-modules/calendar/lec.nix b/system-modules/calendar/lec.nix index 7db416a..b00c8fc 100644 --- a/system-modules/calendar/lec.nix +++ b/system-modules/calendar/lec.nix @@ -1,7 +1,7 @@ { pkgs, ... }@all: with all; { systemd.timers."nx_cal_lec" = { - enable = false; + enable = true; wantedBy = [ "timers.target" ]; timerConfig = { OnBootSec = "40m"; From bff8042d8592c47db7e6b652285e92cc3c8352aa Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sat, 17 Jan 2026 17:24:51 +0000 Subject: [PATCH 2/5] asciinema --- home-modules/pkgs-list/shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home-modules/pkgs-list/shell.nix b/home-modules/pkgs-list/shell.nix index 69bd4b4..8b394d8 100644 --- a/home-modules/pkgs-list/shell.nix +++ b/home-modules/pkgs-list/shell.nix @@ -1,5 +1,6 @@ { pkgs, ... }@all: with all; { home.packages = with pkgs; [ + asciinema bat cmake cmatrix From 48f246429b4d73faf4d6205a54da66d1cef068f0 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sat, 17 Jan 2026 17:24:56 +0000 Subject: [PATCH 3/5] uv --- home-modules/programming/python.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home-modules/programming/python.nix b/home-modules/programming/python.nix index 0fd3677..e55c140 100644 --- a/home-modules/programming/python.nix +++ b/home-modules/programming/python.nix @@ -6,6 +6,8 @@ requests debugpy black + uv + uv-build ]); in { packages = [ From 02231f2693e66bce1ff4bf8c1e59e60490c04ea8 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sat, 17 Jan 2026 17:25:14 +0000 Subject: [PATCH 4/5] wsl fix --- wsl.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wsl.nix b/wsl.nix index 5da4fe1..db6667d 100644 --- a/wsl.nix +++ b/wsl.nix @@ -9,7 +9,7 @@ ./system-modules/users.nix ]; environment.systemPackages = import ./system-modules/base-packages.nix pkgs; - system.stateVersion = hypr.pkgs-version; + system.stateVersion = hyper.pkgs-version; wsl = { defaultUser = hyper.user; enable = true; @@ -27,4 +27,5 @@ }; }; nixpkgs.hostPlatform = hyper.system; + services.upower.enable = true; } From 2bac83ec14044fa5ee4a4d51a79d5604c822ca13 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sat, 17 Jan 2026 19:17:04 +0000 Subject: [PATCH 5/5] wsl fixes --- flake-modules/colors.json | 13 +++++++++++++ flake.nix | 5 ++++- shell-only.nix | 2 +- wsl.nix | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/flake-modules/colors.json b/flake-modules/colors.json index 79dccee..0a3f1a2 100644 --- a/flake-modules/colors.json +++ b/flake-modules/colors.json @@ -37,5 +37,18 @@ "special": "#b9fb35", "weird": "#fb3578" } + }, + "NxDCS": { + "base": { + "foreground": "#ddcccc", + "background": "#080707" + }, + "to_alter": { + "accent": "#d23f36", + "secondary": "#355273", + "tertiary": "#1b789b", + "special": "#66dd66", + "weird": "#dddd66" + } } } \ No newline at end of file diff --git a/flake.nix b/flake.nix index 89099ee..45e0ce0 100644 --- a/flake.nix +++ b/flake.nix @@ -73,7 +73,10 @@ modules = [ ./home.nix ]; extraSpecialArgs = { inherit inputs hyper rice secrets; }; }; - make-shell-configuration = host: let hyper = get-hyper host; in home-manager.lib.homeManagerConfiguration { + make-shell-configuration = host: let + hyper = get-hyper host; + rice = get-rice hyper; + in home-manager.lib.homeManagerConfiguration { pkgs = get-pkgs hyper; modules = [ ./shell-only.nix ]; extraSpecialArgs = { inherit inputs hyper rice secrets; }; diff --git a/shell-only.nix b/shell-only.nix index b2970ed..f2bb075 100644 --- a/shell-only.nix +++ b/shell-only.nix @@ -7,7 +7,7 @@ ./home-modules/git.nix ./home-modules/gpg.nix ./home-modules/helix.nix - ./home-modules/latex.nix + # ./home-modules/latex.nix ./home-modules/nh.nix ./home-modules/nixd.nix ./home-modules/nxgs.nix diff --git a/wsl.nix b/wsl.nix index db6667d..fd4fbe9 100644 --- a/wsl.nix +++ b/wsl.nix @@ -9,7 +9,7 @@ ./system-modules/users.nix ]; environment.systemPackages = import ./system-modules/base-packages.nix pkgs; - system.stateVersion = hyper.pkgs-version; + system.stateVersion = hyper.main-pkgs-version; wsl = { defaultUser = hyper.user; enable = true;