21 lines
387 B
Nix
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;
|
|
};
|
|
};
|
|
}
|