diff --git a/modules/hosts/laptop.nix b/modules/hosts/laptop.nix index 9536962..846bc2e 100644 --- a/modules/hosts/laptop.nix +++ b/modules/hosts/laptop.nix @@ -43,6 +43,7 @@ #ollama otherUtils printer + rss udev user ]; diff --git a/modules/utilities/rss.nix b/modules/utilities/rss.nix new file mode 100644 index 0000000..f6ca8f3 --- /dev/null +++ b/modules/utilities/rss.nix @@ -0,0 +1,7 @@ +_: { + flake.nixosModules.rss = {pkgs, ...}: { + environment.systemPackages = with pkgs; [ + nom + ]; + }; +}