reduced kernel logs and formatted the files

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-19 14:51:46 +02:00
parent 839b7404cf
commit 3ba0464f5f
Signed by: semere
GPG key ID: 7FC937214DF30488
10 changed files with 186 additions and 94 deletions

View file

@ -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;
};
};
};
}