From 6e29c565598cd5da604c5acc1fc871d448aa00cb Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 6 Jun 2023 18:21:15 -0400 Subject: [PATCH] hosts: init ironbar module --- hosts/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/default.nix b/hosts/default.nix index db5273c..497c480 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -4,6 +4,7 @@ inputs: let hmModule = inputs.home-manager.nixosModules.home-manager; diskoModule = inputs.disko.nixosModules.disko; hyprlandModule = inputs.hyprland.homeManagerModules.default; + ironbarModule = inputs.ironbar.homeManagerModules.default; inherit (inputs.nixpkgs.lib) nixosSystem; in { tsuki = nixosSystem { @@ -23,6 +24,7 @@ in { imports = [ ./tsuki/home.nix hyprlandModule + ironbarModule ]; }; };