diff options
-rw-r--r-- | flake.lock | 30 | ||||
-rw-r--r-- | flake.nix | 12 | ||||
-rw-r--r-- | user-mora.nix | 1 |
3 files changed, 42 insertions, 1 deletions
@@ -43,7 +43,9 @@ "flake-compat" ], "libnbtplusplus": "libnbtplusplus", - "nix-filter": "nix-filter", + "nix-filter": [ + "nix-filter" + ], "nixpkgs": [ "nixpkgs" ] @@ -312,6 +314,30 @@ "type": "github" } }, + "niri": { + "inputs": { + "nix-filter": [ + "nix-filter" + ], + "nixpkgs": [ + "nixpkgs" + ], + "rust-overlay": [] + }, + "locked": { + "lastModified": 1740898912, + "narHash": "sha256-oDQWpeYkJ2xzGJOCq+m+uMp8urW/37B7NbTndYKIME4=", + "owner": "YaLTeR", + "repo": "niri", + "rev": "9f205d465c46928b95702447194faeb342a57965", + "type": "github" + }, + "original": { + "owner": "YaLTeR", + "repo": "niri", + "type": "github" + } + }, "nix-filter": { "locked": { "lastModified": 1731533336, @@ -468,6 +494,8 @@ "home-manager": "home-manager", "lanzaboote": "lanzaboote", "musnix": "musnix", + "niri": "niri", + "nix-filter": "nix-filter", "nixpkgs": "nixpkgs", "nurpkgs": "nurpkgs", "nyxpkgs": "nyxpkgs", @@ -7,6 +7,8 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nix-filter.url = "github:numtide/nix-filter"; + flake-compat = { url = "github:edolstra/flake-compat"; flake = false; @@ -60,9 +62,17 @@ fjordlauncher = { url = "github:unmojang/FjordLauncher"; inputs.nixpkgs.follows = "nixpkgs"; + inputs.nix-filter.follows = "nix-filter"; inputs.flake-compat.follows = "flake-compat"; }; + niri = { + url = "github:YaLTeR/niri"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.nix-filter.follows = "nix-filter"; + inputs.rust-overlay.follows = ""; # NOTE: for end user is not requried + }; + wezterm = { url = "github:wezterm/wezterm?dir=nix"; inputs.nixpkgs.follows = "nixpkgs"; @@ -98,6 +108,7 @@ musnix, fjordlauncher, + niri, wezterm, ... @@ -121,6 +132,7 @@ { nixpkgs.overlays = [ fjordlauncher.overlays.default + niri.overlays.default ]; } diff --git a/user-mora.nix b/user-mora.nix index f2771cc..867dac7 100644 --- a/user-mora.nix +++ b/user-mora.nix @@ -105,6 +105,7 @@ python3 # Applications + niri inputs.wezterm.packages.${pkgs.system}.default ]; } |