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" ];
};
environment.systemPackages = (with pkgs; [
wineWowPackages.waylandFull
winetricks
]) ++ [
sakaya
];
environment.systemPackages =
(with pkgs; [
wineWowPackages.waylandFull
winetricks
])
++ [ sakaya ];
environment.sessionVariables = {
LC_ALL = "ja_JP.UTF-8";

View File

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

View File

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

View File

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