gitignore and warnings
This commit is contained in:
parent
02bd57490f
commit
e6522bdb86
5 changed files with 37 additions and 28 deletions
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
{ pkgs
|
||||
, config
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
|
|
@ -63,7 +62,8 @@
|
|||
nautilus
|
||||
|
||||
adwaita-icon-theme
|
||||
(pkgs.callPackage (
|
||||
(pkgs.callPackage
|
||||
(
|
||||
{ stdenv }:
|
||||
stdenv.mkDerivation {
|
||||
name = "global-cursor-theme";
|
||||
|
|
@ -79,9 +79,10 @@
|
|||
EOF
|
||||
'';
|
||||
}
|
||||
) { })
|
||||
)
|
||||
{ })
|
||||
|
||||
config.boot.kernelPackages.perf
|
||||
perf
|
||||
rr
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ inputs@{ machine, ... }:
|
|||
"cp-ani" = cp-media "ani" "anime";
|
||||
"ragdoll" = ragdoll;
|
||||
"dumpasm" = "${pkgs.custom.dumpasm}/bin/dumpasm";
|
||||
"p" = builtins.trace calc calc;
|
||||
"p" = calc;
|
||||
"s" = "systemctl";
|
||||
"j" = "journalctl";
|
||||
"ju" = "journalctl -u";
|
||||
|
|
@ -239,7 +239,11 @@ inputs@{ machine, ... }:
|
|||
setupTide = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||
setupTide() {
|
||||
${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;
|
||||
style = "Lean";
|
||||
prompt_colors = "True color";
|
||||
|
|
|
|||
|
|
@ -5,6 +5,10 @@ inputs@{ machine, ... }:
|
|||
inherit inputs;
|
||||
requirements = [ "cli" ];
|
||||
home-config = _: {
|
||||
home.file.".gitignore".text = ''
|
||||
server\ exited\ unexpectedly
|
||||
'';
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
signing.key = "/home/jana/.ssh/id_ed25519.pub";
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ inputs@{ machine, ... }:
|
|||
]
|
||||
++ (pkgs.lib.splitString " " cmd);
|
||||
|
||||
wallpaper = ("${pkgs.custom.raw-data}/pacific.png");
|
||||
wallpaper = "${pkgs.custom.raw-data}/pacific.png";
|
||||
matugenSchemeType = "scheme-tonal-spot";
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -384,7 +384,7 @@ in
|
|||
code_action.keys = {
|
||||
quit = "<Esc>";
|
||||
};
|
||||
symbol_in_winbar.enable = false;
|
||||
symbol_in_winbar.enable = true;
|
||||
implement.enable = true;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue