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

27 lines
528 B
Nix

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