chore: Run nix fmt

This commit is contained in:
Donovan Glover 2024-08-09 13:29:15 -04:00
parent 5101e93c39
commit 45e7d727a0
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
4 changed files with 16 additions and 21 deletions

View File

@ -40,12 +40,12 @@ in
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
}; };
environment.systemPackages = (with pkgs; [ environment.systemPackages =
wineWowPackages.waylandFull (with pkgs; [
winetricks wineWowPackages.waylandFull
]) ++ [ winetricks
sakaya ])
]; ++ [ sakaya ];
environment.sessionVariables = { environment.sessionVariables = {
LC_ALL = "ja_JP.UTF-8"; LC_ALL = "ja_JP.UTF-8";

View File

@ -7,7 +7,6 @@
}: }:
let let
inherit (lib.types) float int; inherit (lib.types) float int;
inherit (config.modules.system) username; inherit (config.modules.system) username;
inherit (config.lib.stylix.colors.withHashtag) base00; inherit (config.lib.stylix.colors.withHashtag) base00;

View File

@ -50,9 +50,7 @@ stdenvNoCC.mkDerivation {
dontUnpack = true; dontUnpack = true;
nativeBuildInputs = [ nativeBuildInputs = [ makeWrapper ];
makeWrapper
];
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
@ -64,12 +62,14 @@ stdenvNoCC.mkDerivation {
postInstall = '' postInstall = ''
wrapProgram $out/bin/nixf-tidy \ wrapProgram $out/bin/nixf-tidy \
--prefix PATH ":" "${lib.makeBinPath [ --prefix PATH ":" "${
git lib.makeBinPath [
fd git
jq fd
nixf jq
]}" nixf
]
}"
''; '';
meta = { meta = {

View File

@ -1,8 +1,4 @@
{ { lib, config, ... }:
lib,
config,
...
}:
let let
inherit (config.modules.system) username; inherit (config.modules.system) username;