mirror of
https://github.com/deltathetawastaken/dotfiles.git
synced 2025-12-06 07:16:37 +03:00
11 lines
405 B
Nix
11 lines
405 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;
|
|
|
|
}
|