2025-09-02 20:18:42 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-10-20 00:30:58 +02:00
|
|
|
imports = [
|
|
|
|
./fish.nix
|
2025-05-19 21:03:09 +02:00
|
|
|
./fzf.nix
|
2025-04-30 14:47:05 +02:00
|
|
|
./nitch.nix
|
2025-05-04 10:53:18 +02:00
|
|
|
./nushell.nix
|
2024-10-20 00:30:58 +02:00
|
|
|
./secrets.nix
|
|
|
|
./starship.nix
|
|
|
|
./zellij.nix
|
|
|
|
];
|
|
|
|
|
2025-05-04 10:53:18 +02:00
|
|
|
programs.carapace = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
enableNushellIntegration = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
};
|
|
|
|
|
2024-10-20 00:30:58 +02:00
|
|
|
programs.zoxide = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
2025-05-04 10:53:18 +02:00
|
|
|
enableNushellIntegration = true;
|
2024-10-20 00:30:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
programs.neovim = {
|
|
|
|
enable = true;
|
|
|
|
defaultEditor = true;
|
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
vimdiffAlias = true;
|
|
|
|
withNodeJs = true;
|
|
|
|
withPython3 = true;
|
|
|
|
};
|
|
|
|
|
2025-09-02 20:18:42 +02:00
|
|
|
programs.bat = {
|
|
|
|
enable = true;
|
|
|
|
config = {
|
|
|
|
theme = "universal";
|
|
|
|
};
|
|
|
|
themes = {
|
|
|
|
universal = {
|
|
|
|
src = pkgs.writeText "universal.tmTheme" ''
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Universal (nix-colors)</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<array>
|
|
|
|
<dict>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>background</key>
|
|
|
|
<string>#${config.colorScheme.palette.base00}</string>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base05}</string>
|
|
|
|
<key>caret</key>
|
|
|
|
<string>#${config.colorScheme.palette.base05}</string>
|
|
|
|
<key>selection</key>
|
|
|
|
<string>#${config.colorScheme.palette.base02}</string>
|
|
|
|
<key>selectionForeground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base05}</string>
|
|
|
|
<key>lineHighlight</key>
|
|
|
|
<string>#${config.colorScheme.palette.base01}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Comment</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>comment</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base03}</string>
|
|
|
|
<key>fontStyle</key>
|
|
|
|
<string>italic</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>String</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>string</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base0A}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Number</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>constant.numeric</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base0E}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Keyword</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>keyword</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base08}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Function</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>entity.name.function</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base0B}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Type</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>entity.name.type, storage.type</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base0D}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Variable</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>variable</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base05}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<dict>
|
|
|
|
<key>name</key>
|
|
|
|
<string>Constant</string>
|
|
|
|
<key>scope</key>
|
|
|
|
<string>constant</string>
|
|
|
|
<key>settings</key>
|
|
|
|
<dict>
|
|
|
|
<key>foreground</key>
|
|
|
|
<string>#${config.colorScheme.palette.base0E}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
</array>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-10-20 00:30:58 +02:00
|
|
|
|
2025-01-24 14:54:19 +01:00
|
|
|
programs.direnv = {
|
|
|
|
enable = true;
|
2025-05-04 10:53:18 +02:00
|
|
|
enableNushellIntegration = true;
|
2025-01-24 14:54:19 +01:00
|
|
|
nix-direnv.enable =
|
|
|
|
true;
|
|
|
|
};
|
|
|
|
|
2024-10-20 00:30:58 +02:00
|
|
|
programs.eza = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
extraOptions = ["-l" "--icons" "--git" "-a"];
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.lf = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
preview = true;
|
|
|
|
drawbox = true;
|
|
|
|
hidden = true;
|
|
|
|
icons = true;
|
|
|
|
theme = "Dracula";
|
|
|
|
previewer = "bat";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
2025-03-24 13:05:28 +01:00
|
|
|
agenix-cli
|
2024-10-20 00:30:58 +02:00
|
|
|
alejandra
|
|
|
|
bc
|
2025-07-20 14:26:14 +02:00
|
|
|
claude-code
|
2024-10-20 00:30:58 +02:00
|
|
|
comma
|
|
|
|
coreutils
|
|
|
|
devenv
|
|
|
|
fd
|
|
|
|
gcc
|
|
|
|
go
|
|
|
|
htop
|
|
|
|
httpie
|
2025-08-24 11:57:40 +02:00
|
|
|
hyprpaper-random
|
2024-10-20 00:30:58 +02:00
|
|
|
jq
|
|
|
|
just
|
|
|
|
lazygit
|
2024-11-27 11:45:16 +01:00
|
|
|
llm
|
|
|
|
lf
|
2024-10-20 00:30:58 +02:00
|
|
|
nix-index
|
2025-05-05 11:44:32 +02:00
|
|
|
nushellPlugins.skim
|
2024-10-20 00:30:58 +02:00
|
|
|
progress
|
|
|
|
ripgrep
|
2024-11-25 14:59:34 +01:00
|
|
|
rocmPackages.rocm-smi
|
|
|
|
rocmPackages.rocminfo
|
2025-02-12 11:12:32 +01:00
|
|
|
rocmPackages.rocm-runtime
|
2024-10-20 00:30:58 +02:00
|
|
|
tldr
|
2025-04-21 15:00:21 +02:00
|
|
|
pomodoro-timer
|
2024-10-20 00:30:58 +02:00
|
|
|
trash-cli
|
|
|
|
unimatrix
|
|
|
|
unzip
|
2025-01-08 08:58:29 +01:00
|
|
|
vulkan-tools
|
2024-10-20 00:30:58 +02:00
|
|
|
wttrbar
|
2024-11-14 12:17:43 +01:00
|
|
|
wireguard-tools
|
2024-11-16 19:58:59 +01:00
|
|
|
yazi
|
2024-10-20 00:30:58 +02:00
|
|
|
zellij-ps
|
|
|
|
zip
|
|
|
|
];
|
|
|
|
}
|