diff --git a/.modules/storj.txt b/.modules/storj.txt deleted file mode 100644 index e69de29..0000000 diff --git a/flake.nix b/flake.nix index a6ea43a..78de750 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,10 @@ { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; + nixpkgs-wayland = { + url = "github:nix-community/nixpkgs-wayland"; + inputs.nixpkgs.follows = "nixpkgs"; + }; nixos-generators = { url = "github:nix-community/nixos-generators"; inputs.nixpkgs.follows = "nixpkgs"; @@ -21,6 +25,11 @@ modules = [ ./hosts/creatorforge.nix ./.modules/base/proxmox-vm-hardware.nix + ({pkgs, config, ...}:{ + environment.systemPackages = with pkgs; [ + inputs.nixpkgs-wayland.packages.${system}.waybar + ]; + }) ]; }; };