Compare commits

..

2 Commits

Author SHA1 Message Date
uttarayan21
f9a7c9ae52 feat(hyprland): optimize animation timings
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(neovim): add tv plugin and remove markdown-preview
2026-01-07 04:53:57 +05:30
uttarayan21
5d48a7ed38 feat: Added hyprshade 2026-01-06 15:26:12 +05:30
7 changed files with 3445 additions and 66 deletions

View File

@@ -1,11 +1,5 @@
{
pkgs,
lib,
device,
...
}: {
programs.
bat = {
{...}: {
programs.bat = {
enable = true;
# extraPackages = with pkgs.bat-extras; [batman batgrep batwatch];
};

View File

@@ -8,10 +8,10 @@
./aichat.nix
./atuin.nix
./bat.nix
# ./bluetui.nix
./carapace.nix
./ddcbacklight.nix
./direnv.nix
./eilmeldung.nix
./eza.nix
./fastfetch.nix
./fish.nix
@@ -19,42 +19,43 @@
./gh.nix
./git.nix
./himalaya.nix
# ./mpd.nix
./hyprshade.nix
./ncpamixer.nix
./neomutt.nix
./neovim.nix
# ./nh.nix
./nix-index.nix
./nushell.nix
# ./omnix.nix
./opencode.nix
# ./retroarch.nix
./rustup.nix
# ./ryujinx.nix
./sops.nix
./ssh.nix
./starship.nix
# ./sxiv.nix
# ./tea.nix
./television.nix
./tmux.nix
# ./tuifeed.nix
./uv.nix
# ./xh.nix
./yazi.nix
./yt-dlp.nix
./zoxide.nix
./eilmeldung.nix
# ./bluetui.nix
# ./goread.nix
# ./helix.nix
# ./magika.nix
# ./mpd.nix
# ./mpris-scrobbler.nix
# ./ncmpcpp.nix
# ./neomutt.nix
# ./neovim.nix
# ./newsboat.nix
# ./nh.nix
# ./omnix.nix
# ./retroarch.nix
# ./ryujinx.nix
# ./sxiv.nix
# ./tea.nix
# ./template.nix
# ./tuifeed.nix
# ./xh.nix
# ./zellij.nix
];
home.packages = with pkgs;

View File

@@ -0,0 +1,10 @@
{
pkgs,
device,
...
}: {
home.packages = with pkgs;
lib.mkIf (device.is "ryu") [
hyprshade
];
}

View File

@@ -35,13 +35,15 @@
settings = {
# source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf";
render = {
direct_scanout = true;
cm_fs_passthrough = 1;
cm_auto_hdr = 1;
};
experimental = {
xx_color_management_v4 = true;
cm_enabled = true;
direct_scanout = 1; # 0 - off; 1 - on; 2 - auto based on `game`
cm_fs_passthrough = 1; # 0 - off; 1 - always; 2 - hdr only
send_content_type = true; # automatic monitor mode switch
cm_auto_hdr = 1; # 0 - off; 1 - switch to cm,hdr 2; 2 - switch to cm,hdredid
};
# experimental = {
# xx_color_management_v4 = true;
# };
monitorv2 = [
{
output = device.monitors.primary;
@@ -123,12 +125,12 @@
bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
animation = [
"windows, 1, 7, myBezier"
"windowsOut, 1, 7, default, popin 80%"
"windows, 1, 2, myBezier"
"windowsOut, 1, 2, default, popin 80%"
"border, 1, 10, default"
"borderangle, 1, 8, default"
"fade, 1, 7, default"
"workspaces, 1, 6, default"
"fade, 1, 2, default"
"workspaces, 1, 2, default"
];
};

View File

@@ -330,10 +330,6 @@ in {
settings.image_provider = "image.nvim";
};
markdown-preview = {
enable = true;
};
noice = {
enable = true;
settings = {
@@ -407,6 +403,15 @@ in {
};
};
tv = {
enable = true;
settings = {
global_keybindings = {
channels = "<leader>tv";
};
};
};
fidget = {
enable = true;
settings.notification.override_vim_notify = true;

View File

@@ -47,36 +47,3 @@ in [
vimPlugins
tree-sitter-grammars
]
# tree-sitter-grammars = final: prev: {
# tree-sitter-grammars =
# prev.tree-sitter-grammars
# // {
# # tree-sitter-just = final.pkgs.tree-sitter.buildGrammar {
# # language = "just";
# # version = "1";
# # src = inputs.tree-sitter-just;
# # };
# # tree-sitter-nu = final.pkgs.tree-sitter.buildGrammar {
# # language = "nu";
# # version = "1";
# # src = inputs.tree-sitter-nu;
# # };
# tree-sitter-d2 = final.pkgs.tree-sitter.buildGrammar {
# language = "d2";
# version = "1";
# src = inputs.tree-sitter-d2;
# };
# };
# };
# vimPlugins = final: prev: {
# vimPlugins =
# prev.vimPlugins
# // {
# d2 = final.pkgs.vimUtils.buildVimPlugin {
# name = "d2";
# version = "1";
# src = inputs.d2;
# };
# };
# };

File diff suppressed because one or more lines are too long