first bug fixes

This commit is contained in:
maxstrb 2026-03-14 22:10:10 +01:00
parent a9eadc52f3
commit 35377104df
4 changed files with 110 additions and 3 deletions

View file

@ -10,5 +10,5 @@
../modules/sddm.nix ../modules/sddm.nix
]; ];
networking.allowedTCPPorts = [9123]; networking.firewall.allowedTCPPorts = [9123];
} }

108
flake.lock generated
View file

@ -256,6 +256,64 @@
"type": "github" "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": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1773282481, "lastModified": 1773282481,
@ -272,6 +330,22 @@
"type": "github" "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": { "nur": {
"inputs": { "inputs": {
"flake-parts": [ "flake-parts": [
@ -326,6 +400,7 @@
"inputs": { "inputs": {
"floatc": "floatc", "floatc": "floatc",
"home-manager": "home-manager", "home-manager": "home-manager",
"niri-flake": "niri-flake",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nvf": "nvf", "nvf": "nvf",
"stylix": "stylix", "stylix": "stylix",
@ -498,6 +573,39 @@
"type": "github" "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": { "zen-browser": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [

View file

@ -51,7 +51,6 @@
inputs.home-manager.nixosModules.default inputs.home-manager.nixosModules.default
{ {
home-manager = { home-manager = {
enable = true;
useUserPackages = true; useUserPackages = true;
useGlobalPkgs = true; useGlobalPkgs = true;

View file

@ -49,6 +49,6 @@ in {
(lib.mkIf cfg.nvf.enable ./nvf.nix) (lib.mkIf cfg.nvf.enable ./nvf.nix)
(lib.mkIf cfg.shell.enable ./shell.nix) (lib.mkIf cfg.shell.enable ./shell.nix)
(lib.mkIf cfg.games.enable ./games/minecraft.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)
]; ];
} }