From 278b9eaea1d1bae99532c3c136344cd36ddd49d8 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 24 Jul 2025 21:32:20 +0100 Subject: [PATCH] Move zeroad package --- hosts/t480/configuration.nix | 1 - modules2/games/zeroad.nix | 7 +++++++ modules2/home-manager/nixos.nix | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 modules2/games/zeroad.nix diff --git a/hosts/t480/configuration.nix b/hosts/t480/configuration.nix index c1098e18..af703ea9 100644 --- a/hosts/t480/configuration.nix +++ b/hosts/t480/configuration.nix @@ -130,7 +130,6 @@ xcape xsel yt-dlp - zeroad zoom-us ]; } diff --git a/modules2/games/zeroad.nix b/modules2/games/zeroad.nix new file mode 100644 index 00000000..c7d5cf6e --- /dev/null +++ b/modules2/games/zeroad.nix @@ -0,0 +1,7 @@ +{ + flake.modules.homeManager.gui = + { pkgs, ... }: + { + home.packages = with pkgs; [ zeroad ]; + }; +} diff --git a/modules2/home-manager/nixos.nix b/modules2/home-manager/nixos.nix index d54d8a77..ecfa62e6 100644 --- a/modules2/home-manager/nixos.nix +++ b/modules2/home-manager/nixos.nix @@ -26,6 +26,7 @@ ) config.flake.modules.homeManager.base + config.flake.modules.homeManager.gui ]; }; };