diff --git a/configuration/main/configuration.nix b/configuration/main/configuration.nix index 682efd8..f8410e5 100644 --- a/configuration/main/configuration.nix +++ b/configuration/main/configuration.nix @@ -24,8 +24,6 @@ ../modules/locale.nix ]; - programs.niri.enable = true; - nix.settings.experimental-features = ["nix-command" "flakes"]; nixpkgs.config = { @@ -39,13 +37,5 @@ home-manager.extraSpecialArgs = {inherit inputs;}; - environment.systemPackages = with pkgs; [ - xorg.libXcursor - xorg.libX11 - xorg.libXi - # You might also need these: - xwayland - ]; - system.stateVersion = "25.11"; } diff --git a/flake.lock b/flake.lock index 3cf5068..e8f986f 100644 --- a/flake.lock +++ b/flake.lock @@ -90,64 +90,6 @@ "type": "github" } }, - "niri": { - "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": 1768601625, - "narHash": "sha256-tQ+QHQ95BPSldBEU5SyxSW13yO3XRp87z+QPZmKUy+k=", - "owner": "sodiboo", - "repo": "niri-flake", - "rev": "395c7aef5c8fcc39cfe8bbf235298be291d1325e", - "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": 1768487377, - "narHash": "sha256-+WOpoDSvYJds8zCMlwDHKBivxSViM5n1J1Jo9Lcf19Y=", - "owner": "YaLTeR", - "repo": "niri", - "rev": "87e2dd0361172a48cb3ac8e5b3f6f701c758700d", - "type": "github" - }, - "original": { - "owner": "YaLTeR", - "repo": "niri", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1768564909, @@ -164,22 +106,6 @@ "type": "github" } }, - "nixpkgs-stable": { - "locked": { - "lastModified": 1768323494, - "narHash": "sha256-yBXJLE6WCtrGo7LKiB6NOt6nisBEEkguC/lq/rP3zRQ=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "2c3e5ec5df46d3aeee2a1da0bfedd74e21f4bf3a", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-25.11", - "repo": "nixpkgs", - "type": "github" - } - }, "nixpkgs_2": { "locked": { "lastModified": 1764242076, @@ -225,7 +151,6 @@ "root": { "inputs": { "home-manager": "home-manager", - "niri": "niri", "nixpkgs": "nixpkgs", "nvf": "nvf" } @@ -244,39 +169,6 @@ "repo": "default", "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": 1768106915, - "narHash": "sha256-HlLo9zH4ULRXlmlIK948cHmdVhxyHgTHxGaoCRlW4k8=", - "owner": "Supreeeme", - "repo": "xwayland-satellite", - "rev": "72245e108f3b03c3c4474d2de9de2d1830849603", - "type": "github" - }, - "original": { - "owner": "Supreeeme", - "repo": "xwayland-satellite", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index d296510..81f7376 100644 --- a/flake.nix +++ b/flake.nix @@ -9,11 +9,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - niri = { - url = "github:sodiboo/niri-flake"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; @@ -23,7 +18,6 @@ outputs = inputs @ { self, nixpkgs, - niri, home-manager, ... }: { @@ -35,8 +29,6 @@ modules = [ ./configuration/main/configuration.nix - niri.nixosModules.niri - home-manager.nixosModules.default {