gitignore and warnings

This commit is contained in:
Jana Dönszelmann 2026-03-17 10:50:47 +01:00
parent 02bd57490f
commit e6522bdb86
No known key found for this signature in database
5 changed files with 37 additions and 28 deletions

View file

@ -1,7 +1,6 @@
{ { pkgs
pkgs, , config
config, , ...
...
}: }:
{ {
imports = [ imports = [
@ -63,7 +62,8 @@
nautilus nautilus
adwaita-icon-theme adwaita-icon-theme
(pkgs.callPackage ( (pkgs.callPackage
(
{ stdenv }: { stdenv }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "global-cursor-theme"; name = "global-cursor-theme";
@ -79,9 +79,10 @@
EOF EOF
''; '';
} }
) { }) )
{ })
config.boot.kernelPackages.perf perf
rr rr
]; ];

View file

@ -20,7 +20,7 @@ inputs@{ machine, ... }:
"cp-ani" = cp-media "ani" "anime"; "cp-ani" = cp-media "ani" "anime";
"ragdoll" = ragdoll; "ragdoll" = ragdoll;
"dumpasm" = "${pkgs.custom.dumpasm}/bin/dumpasm"; "dumpasm" = "${pkgs.custom.dumpasm}/bin/dumpasm";
"p" = builtins.trace calc calc; "p" = calc;
"s" = "systemctl"; "s" = "systemctl";
"j" = "journalctl"; "j" = "journalctl";
"ju" = "journalctl -u"; "ju" = "journalctl -u";
@ -239,7 +239,11 @@ inputs@{ machine, ... }:
setupTide = lib.hm.dag.entryAfter [ "writeBoundary" ] '' setupTide = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
setupTide() { setupTide() {
${pkgs.fish}/bin/fish -c ${lib.escapeShellArg "tide configure ${ ${pkgs.fish}/bin/fish -c ${lib.escapeShellArg "tide configure ${
lib.cli.toGNUCommandLineShell { } { lib.cli.toCommandLineShell (optionName: {
option = if builtins.stringLength optionName > 1 then "--${optionName}" else "-${optionName}";
sep = null;
explicitBool = false;
}) {
auto = true; auto = true;
style = "Lean"; style = "Lean";
prompt_colors = "True color"; prompt_colors = "True color";

View file

@ -5,6 +5,10 @@ inputs@{ machine, ... }:
inherit inputs; inherit inputs;
requirements = [ "cli" ]; requirements = [ "cli" ];
home-config = _: { home-config = _: {
home.file.".gitignore".text = ''
server\ exited\ unexpectedly
'';
programs.git = { programs.git = {
enable = true; enable = true;
signing.key = "/home/jana/.ssh/id_ed25519.pub"; signing.key = "/home/jana/.ssh/id_ed25519.pub";

View file

@ -21,7 +21,7 @@ inputs@{ machine, ... }:
] ]
++ (pkgs.lib.splitString " " cmd); ++ (pkgs.lib.splitString " " cmd);
wallpaper = ("${pkgs.custom.raw-data}/pacific.png"); wallpaper = "${pkgs.custom.raw-data}/pacific.png";
matugenSchemeType = "scheme-tonal-spot"; matugenSchemeType = "scheme-tonal-spot";
in in
{ {

View file

@ -384,7 +384,7 @@ in
code_action.keys = { code_action.keys = {
quit = "<Esc>"; quit = "<Esc>";
}; };
symbol_in_winbar.enable = false; symbol_in_winbar.enable = true;
implement.enable = true; implement.enable = true;
}; };
}; };
@ -435,8 +435,8 @@ in
__unkeyed-1 = "filetype"; __unkeyed-1 = "filetype";
} }
]; ];
lualine_y = [ { __unkeyed-1 = "progress"; } ]; lualine_y = [{ __unkeyed-1 = "progress"; }];
lualine_z = [ { __unkeyed-1 = "location"; } ]; lualine_z = [{ __unkeyed-1 = "location"; }];
}; };
}; };
}; };