Reformat nix source file using nixfmt

This commit is contained in:
ulic-youthlic 2025-07-13 06:04:55 +08:00
parent 2e4a532958
commit 9201969c1b
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
220 changed files with 3169 additions and 2487 deletions

View file

@ -4,40 +4,43 @@
config,
unixName,
...
}: {
}:
{
imports = lib.youthlic.loadImports ./.;
youthlic = {
xdg-dirs.enable = true;
programs = let
email = config.accounts.email.accounts.ulic-youthlic;
inherit (email) name address;
signKey = email.gpg.key;
in {
rustypaste-cli.enable = true;
gpg.enable = true;
jujutsu = {
enable = true;
inherit name signKey;
email = address;
programs =
let
email = config.accounts.email.accounts.ulic-youthlic;
inherit (email) name address;
signKey = email.gpg.key;
in
{
rustypaste-cli.enable = true;
gpg.enable = true;
jujutsu = {
enable = true;
inherit name signKey;
email = address;
};
git = {
inherit name signKey;
email = address;
encrypt-credential = true;
};
fish.enable = true;
bash.enable = true;
starship.enable = true;
sops.enable = true;
kvm.enable = true;
atuin.enable = true;
ion.enable = true;
awscli = {
enable = true;
url = "http://localhost:8491";
};
doom.enable = true;
};
git = {
inherit name signKey;
email = address;
encrypt-credential = true;
};
fish.enable = true;
bash.enable = true;
starship.enable = true;
sops.enable = true;
kvm.enable = true;
atuin.enable = true;
ion.enable = true;
awscli = {
enable = true;
url = "http://localhost:8491";
};
doom.enable = true;
};
};
david = {

View file

@ -1,11 +1,14 @@
{config, ...}: {
{ config, ... }:
{
david.programs.niri = {
waybar.settings = let
cfg = config.david.programs.niri.waybar;
in [
(cfg.template // (cfg.helper.mkBacklight "ddcci13") // {output = "DP-3";})
(cfg.template // (cfg.helper.mkBacklight "nvidia_0") // {output = "eDP-1";})
];
waybar.settings =
let
cfg = config.david.programs.niri.waybar;
in
[
(cfg.template // (cfg.helper.mkBacklight "ddcci13") // { output = "DP-3"; })
(cfg.template // (cfg.helper.mkBacklight "nvidia_0") // { output = "eDP-1"; })
];
wluma.extraSettings = {
output = {
backlight = [
@ -28,6 +31,6 @@
}
];
};
extraConfig = [];
extraConfig = [ ];
};
}