From 45fbdb91861218f42055a5fe5128378399bc619c Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Thu, 30 Oct 2025 23:27:00 +0100 Subject: [PATCH 1/3] niri: add inputs for all machines otherwise they fail to evaluate --- modules/base/system/default.nix | 1 + modules/desktop/niri.nix | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/base/system/default.nix b/modules/base/system/default.nix index 733c1c2..0f6c9fc 100644 --- a/modules/base/system/default.nix +++ b/modules/base/system/default.nix @@ -30,6 +30,7 @@ { imports = [ inputs.sops-nix.nixosModules.sops + inputs.niri-flake.nixosModules.niri ]; environment.systemPackages = with pkgs; [ diff --git a/modules/desktop/niri.nix b/modules/desktop/niri.nix index 505e118..1455b82 100644 --- a/modules/desktop/niri.nix +++ b/modules/desktop/niri.nix @@ -3,9 +3,6 @@ nixos.niri = { inputs, pkgs, ... }: { - imports = [ - inputs.niri-flake.nixosModules.niri - ]; programs.niri = { enable = true; From 0378235fac612b758cf1f6d7d99d5ac2e5586082 Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Thu, 30 Oct 2025 23:27:30 +0100 Subject: [PATCH 2/3] bluetooth: add tui for easy interaction --- modules/systems/bluetooth.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/systems/bluetooth.nix b/modules/systems/bluetooth.nix index 917ca3a..eb78b93 100644 --- a/modules/systems/bluetooth.nix +++ b/modules/systems/bluetooth.nix @@ -1,7 +1,9 @@ { flake.modules.nixos.bluetooth = - { ... }: + { pkgs, ... }: { + environment.systemPackages = [ pkgs.bluetui ]; + hardware.bluetooth = { enable = true; powerOnBoot = true; From a3f4d4615a4097583fc2ccab70ac3744e1964cbb Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Thu, 30 Oct 2025 23:27:53 +0100 Subject: [PATCH 3/3] tools: add pyfa and pob --- modules/games/various-games.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/games/various-games.nix b/modules/games/various-games.nix index 7f542e7..ef45bca 100644 --- a/modules/games/various-games.nix +++ b/modules/games/various-games.nix @@ -5,6 +5,10 @@ environment.systemPackages = with pkgs; [ prismlauncher starsector + + # gaming tools + pyfa + path-of-building ]; }; }