From 35377104df469210576f69e6f6a2b151aea68828 Mon Sep 17 00:00:00 2001 From: maxstrb Date: Sat, 14 Mar 2026 22:10:10 +0100 Subject: [PATCH] first bug fixes --- configuration/main/configuration.nix | 2 +- flake.lock | 108 +++++++++++++++++++++++++++ flake.nix | 1 - home/modules/default.nix | 2 +- 4 files changed, 110 insertions(+), 3 deletions(-) diff --git a/configuration/main/configuration.nix b/configuration/main/configuration.nix index 51e7384..b373cb3 100644 --- a/configuration/main/configuration.nix +++ b/configuration/main/configuration.nix @@ -10,5 +10,5 @@ ../modules/sddm.nix ]; - networking.allowedTCPPorts = [9123]; + networking.firewall.allowedTCPPorts = [9123]; } diff --git a/flake.lock b/flake.lock index f4728cb..fbabf49 100644 --- a/flake.lock +++ b/flake.lock @@ -256,6 +256,64 @@ "type": "github" } }, + "niri-flake": { + "inputs": { + "niri-stable": "niri-stable", + "niri-unstable": "niri-unstable", + "nixpkgs": [ + "nixpkgs" + ], + "nixpkgs-stable": "nixpkgs-stable", + "xwayland-satellite-stable": "xwayland-satellite-stable", + "xwayland-satellite-unstable": "xwayland-satellite-unstable" + }, + "locked": { + "lastModified": 1773501701, + "narHash": "sha256-+0LBAEm8F5h9Nm+hdS07aoS1W4oTtW6c8lltb66oOYQ=", + "owner": "sodiboo", + "repo": "niri-flake", + "rev": "39ac039250a4a32bf8691405cac04864fc66a70d", + "type": "github" + }, + "original": { + "owner": "sodiboo", + "repo": "niri-flake", + "type": "github" + } + }, + "niri-stable": { + "flake": false, + "locked": { + "lastModified": 1756556321, + "narHash": "sha256-RLD89dfjN0RVO86C/Mot0T7aduCygPGaYbog566F0Qo=", + "owner": "YaLTeR", + "repo": "niri", + "rev": "01be0e65f4eb91a9cd624ac0b76aaeab765c7294", + "type": "github" + }, + "original": { + "owner": "YaLTeR", + "ref": "v25.08", + "repo": "niri", + "type": "github" + } + }, + "niri-unstable": { + "flake": false, + "locked": { + "lastModified": 1773130184, + "narHash": "sha256-3bwx4WqCB06yfQIGB+OgIckOkEDyKxiTD5pOo4Xz2rI=", + "owner": "YaLTeR", + "repo": "niri", + "rev": "b07bde3ee82dd73115e6b949e4f3f63695da35ea", + "type": "github" + }, + "original": { + "owner": "YaLTeR", + "repo": "niri", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1773282481, @@ -272,6 +330,22 @@ "type": "github" } }, + "nixpkgs-stable": { + "locked": { + "lastModified": 1773375660, + "narHash": "sha256-SEzUWw2Rf5Ki3bcM26nSKgbeoqi2uYy8IHVBqOKjX3w=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3e20095fe3c6cbb1ddcef89b26969a69a1570776", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-25.11", + "repo": "nixpkgs", + "type": "github" + } + }, "nur": { "inputs": { "flake-parts": [ @@ -326,6 +400,7 @@ "inputs": { "floatc": "floatc", "home-manager": "home-manager", + "niri-flake": "niri-flake", "nixpkgs": "nixpkgs", "nvf": "nvf", "stylix": "stylix", @@ -498,6 +573,39 @@ "type": "github" } }, + "xwayland-satellite-stable": { + "flake": false, + "locked": { + "lastModified": 1755491097, + "narHash": "sha256-m+9tUfsmBeF2Gn4HWa6vSITZ4Gz1eA1F5Kh62B0N4oE=", + "owner": "Supreeeme", + "repo": "xwayland-satellite", + "rev": "388d291e82ffbc73be18169d39470f340707edaa", + "type": "github" + }, + "original": { + "owner": "Supreeeme", + "ref": "v0.7", + "repo": "xwayland-satellite", + "type": "github" + } + }, + "xwayland-satellite-unstable": { + "flake": false, + "locked": { + "lastModified": 1773499041, + "narHash": "sha256-XZ4/tVdLeAYDgKe4JD4C7yYUKydMxwt8c2j6APFWcIc=", + "owner": "Supreeeme", + "repo": "xwayland-satellite", + "rev": "309d8e2a29953f7465dc14c939e2afe4682c0aa9", + "type": "github" + }, + "original": { + "owner": "Supreeeme", + "repo": "xwayland-satellite", + "type": "github" + } + }, "zen-browser": { "inputs": { "nixpkgs": [ diff --git a/flake.nix b/flake.nix index d63aa33..a7bd823 100644 --- a/flake.nix +++ b/flake.nix @@ -51,7 +51,6 @@ inputs.home-manager.nixosModules.default { home-manager = { - enable = true; useUserPackages = true; useGlobalPkgs = true; diff --git a/home/modules/default.nix b/home/modules/default.nix index 97cea74..e109172 100644 --- a/home/modules/default.nix +++ b/home/modules/default.nix @@ -49,6 +49,6 @@ in { (lib.mkIf cfg.nvf.enable ./nvf.nix) (lib.mkIf cfg.shell.enable ./shell.nix) (lib.mkIf cfg.games.enable ./games/minecraft.nix) - (lib.mkIf cfg.createProject.enable ./create-project) + (lib.mkIf cfg.createProject.enable ./create-project/create-project.nix) ]; }