mirror of
https://github.com/deltathetawastaken/dotfiles.git
synced 2025-12-06 07:16:37 +03:00
12 lines
514 B
Nix
12 lines
514 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
home.file.".config/hypr/shaders/extradark.glsl".text = builtins.readFile ./extradark.glsl;
|
|
home.file.".config/hypr/shaders/noblue-light.glsl".text = builtins.readFile ./noblue-light.glsl;
|
|
home.file.".config/hypr/shaders/noblue-smart.glsl".text = builtins.readFile ./noblue-smart.glsl;
|
|
home.file.".config/hypr/shaders/noblue.glsl".text = builtins.readFile ./noblue.glsl;
|
|
home.file.".config/hypr/shaders/blue-light-filter.glsl".text = builtins.readFile ./blue-light-filter.glsl;
|
|
|
|
}
|