25 lines
506 B
Nix
25 lines
506 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, ... }:
|
|
{
|
|
home.file.".config/quickshell/hyprshell".source = ./hyprshell;
|
|
};
|
|
};
|
|
}
|