update
Some checks failed
/ lint (push) Failing after 27s

This commit is contained in:
Jana Dönszelmann 2026-01-29 17:19:50 +01:00
parent 84644d3675
commit 86ccae0d05
No known key found for this signature in database
11 changed files with 139 additions and 76 deletions

View file

@ -1,8 +1,4 @@
{
pkgs,
...
}:
{
_: {
imports = [
./nvim
./fish
@ -18,31 +14,91 @@
custom.program.graphcial-packages = {
requirements = [ "graphical" ];
home-config = _: {
home.packages = with pkgs; [
spotify
obsidian
];
};
home-config =
{ pkgs, ... }:
{
home.packages = with pkgs; [
spotify
obsidian
element-desktop
chromium
bind.dnsutils
mpv
vlc
];
};
};
custom.program.fun-packages = {
requirements = [ "fun" ];
home-config = _: {
home.packages = with pkgs; [
p1n3appl3.tab
];
};
home-config =
{ pkgs, ... }:
{
home.packages = with pkgs; [
p1n3appl3.tab
prismlauncher
];
};
};
custom.program.cli-packages = {
requirements = [ "cli" ];
home-config = _: {
home.packages = with pkgs; [
rustup
sops
];
};
home-config =
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# general cli tools
sops
fzf
htop
ncdu
psmisc
ripgrep
rsync
zoxide
tmux
direnv
atuin
rcon
lix
nix-output-monitor
wget
comma
unzip
# dev tools
gdb
clang-tools
rustup
git
python3
unixtools.xxd
net-tools
sqlite-interactive
(writeShellScriptBin "nas" ''
mkdir -p ~/Documents/nas
${sshfs}/bin/sshfs fili:/storage/storage/data/ ~/Documents/nas
cd ~/Documents/nas
'')
];
# Set up direnv
programs.direnv = {
package = pkgs.direnv;
silent = false;
nix-direnv = {
enable = true;
package = pkgs.nix-direnv;
};
};
home.file = {
"${config.xdg.configHome}/sqlite3/sqliterc".source = pkgs.writeText ".sqliterc" ''
.mode box
'';
};
};
};
custom.program.homedirs = {

View file

@ -115,7 +115,7 @@ _: {
url = "https://search.nixos.org/packages?query=%s";
}
{
keyword = "!nho";
keyword = "!hmo";
url = "https://home-manager-options.extranix.com/?query=%s";
}
{

View file

@ -85,9 +85,9 @@ _: {
enableFishIntegration = true;
settings = {
filter_mode_shell_up_key_binding = "directory";
filter_mode_shell_up_key_binding = "workspace";
exit_mode = "return-original";
inline_height = 20;
workspaces = true;
};
};

View file

@ -102,10 +102,19 @@ _: {
"bookmark"
"move"
"--from"
"heads(::@- & bookmarks())"
"heads(@- & bookmarks())"
"--to"
"coalesce(@ & ~empty(), @-)"
];
fuck = [
"bookmark"
"move"
"--from"
"heads(@ & bookmarks())"
"--to"
"@-"
"--allow-backwards"
];
catchup = [
"rebase"
"-b"

View file

@ -3,10 +3,19 @@ _: {
custom.program.kitty.home-config =
{ pkgs, flakes, ... }:
{
home.packages = with pkgs; [
# Maple Mono (Ligature TTF unhinted)
custom.maple-mono.truetype
# Maple Mono NF (Ligature unhinted)
custom.maple-mono.NF-unhinted
# Maple Mono NF CN (Ligature unhinted)
custom.maple-mono.NF-CN-unhinted
];
programs.kitty = {
enable = true;
font = {
name = "Jetbrains Mono";
name = "Maple Mono NF";
size = 13.0;
package = pkgs.jetbrains-mono;
};

View file

@ -43,6 +43,13 @@ _: {
jetbrains-mono
fira-mono
noto-fonts
# Maple Mono (Ligature TTF unhinted)
custom.maple-mono.truetype
# Maple Mono NF (Ligature unhinted)
custom.maple-mono.NF-unhinted
# Maple Mono NF CN (Ligature unhinted)
custom.maple-mono.NF-CN-unhinted
];
programs.niri.settings = {
@ -79,6 +86,8 @@ _: {
QT_QPA_PLATFORMTHEME = "qt6ct";
XCURSOR_THEME = "Adwaita";
XCURSOR_SIZE = "10";
DEFAULT_BROWSER = "${config.programs.firefox.package}/bin/firefox";
BROWSER = "${config.programs.firefox.package}/bin/firefox";
};
programs.niri.settings = {
@ -105,7 +114,7 @@ _: {
};
debug = {
render-drm-device = "/dev/dri/renderD128";
render-drm-device = "/dev/dri/by-path/pci-0000:00:02.0-render";
};
cursor = {
@ -243,6 +252,12 @@ _: {
{
argv = [ "${pkgs.lib.getExe' flakes.noctalia.packages.${pkgs.system}.default "noctalia-shell"}" ];
}
{
sh = ''
systemctl --user import-environment NIRI_SOCKET
systemctl --user restart kanata
'';
}
];
animations = { };
@ -515,6 +530,9 @@ _: {
{
id = "plugin:catwalk";
}
{
id = "plugin:brightness";
}
];
center = [
{

View file

@ -3,6 +3,15 @@ _: {
custom.program.zed.home-config =
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Maple Mono (Ligature TTF unhinted)
custom.maple-mono.truetype
# Maple Mono NF (Ligature unhinted)
custom.maple-mono.NF-unhinted
# Maple Mono NF CN (Ligature unhinted)
custom.maple-mono.NF-CN-unhinted
];
programs.zed-editor = {
enable = true;
extensions = [
@ -151,10 +160,10 @@ _: {
"EDITOR" = "vim";
};
"font_size" = 12;
"font_family" = "Noto Sans Mono";
"font_family" = "Maple Mono NF";
"line_height" = "standard";
};
buffer_font_family = "JetBrains Mono";
buffer_font_family = "Maple Mono NF";
# "diagnostics_max_severity": "off",