From 1a2ed203d838f231bd15557196279504cef75182 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 12 Mar 2025 16:31:48 +0100 Subject: [PATCH] add niri --- hosts/haze/default.nix | 1 + hosts/haze/niri.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 hosts/haze/niri.nix diff --git a/hosts/haze/default.nix b/hosts/haze/default.nix index 6524c36..14821f9 100644 --- a/hosts/haze/default.nix +++ b/hosts/haze/default.nix @@ -20,6 +20,7 @@ ./thunderbird.nix ./hardware.nix ./network.nix + ./niri.nix ./sway.nix ./syncthing.nix diff --git a/hosts/haze/niri.nix b/hosts/haze/niri.nix new file mode 100644 index 0000000..4a6f93b --- /dev/null +++ b/hosts/haze/niri.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ niri ]; +}