hyprshell/flake.nix
2025-08-10 01:10:08 -04:00

21 lines
387 B
Nix

{
description = "Quickshell Hyprshell config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ self, nixpkgs }:
{
homeManagerModules.default =
{
config,
lib,
pkgs,
...
}:
{
home.file.".config/quickshell/hyprshell".source = ./hyprshell;
};
};
}