This commit is contained in:
2026-04-06 16:07:47 +02:00
parent 30039975c0
commit 8d8703b1cc
3 changed files with 16 additions and 0 deletions

View File

@@ -16,6 +16,8 @@
plasma-manager.inputs.home-manager.follows = "home-manager";
jovian-nixos.url = "github:Jovian-Experiments/Jovian-NixOS";
jovian-nixos.inputs.nixpkgs.follows = "nixpkgs";
caelestia-shell-url = "github:caelestia-dots/shell";
caelestia-shell.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; }

View File

View File

@@ -0,0 +1,14 @@
{ inputs, ... }: {
flake.nixosModules.hyprland-sys-hyprland = { pkgs, ... }: {
programs.hyprland = {
enable = true;
xwayland.enable = true;
withSystemd = true;
withUWSM = true;
};
environment.systemPackages = [
inputs.caelestia-shell.packages.${pkgs.stdenv.hostPlatform.system}.with-cli
];
};
}