mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 18:34:36 +00:00
reduced kernel logs and formatted the files
This commit is contained in:
parent
839b7404cf
commit
3ba0464f5f
10 changed files with 186 additions and 94 deletions
|
|
@ -1,12 +1,18 @@
|
|||
{ config, lib, pkgs, userVars, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
userVars,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.dotfiles.shell;
|
||||
|
||||
shellDir = ./.;
|
||||
otherShellFiles = builtins.filter
|
||||
(name: name != "default.nix" && lib.strings.hasSuffix ".nix" name)
|
||||
(builtins.attrNames (builtins.readDir shellDir));
|
||||
otherShellFiles = builtins.filter (
|
||||
name: name != "default.nix" && lib.strings.hasSuffix ".nix" name
|
||||
) (builtins.attrNames (builtins.readDir shellDir));
|
||||
importedModules = map (file: shellDir + "/${file}") otherShellFiles;
|
||||
in
|
||||
{
|
||||
|
|
@ -55,7 +61,6 @@ in
|
|||
pinentry.package = pkgs.pinentry-qt;
|
||||
};
|
||||
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,7 +35,10 @@ in
|
|||
auto-info = true;
|
||||
rulers = [ 80 ];
|
||||
bufferline = "multiple";
|
||||
shell = [ "zsh" "-c" ];
|
||||
shell = [
|
||||
"zsh"
|
||||
"-c"
|
||||
];
|
||||
jump-label-alphabet = "asdfghjklqwertyuiopzxcvbnm";
|
||||
|
||||
cursor-shape = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue