mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
chore: Run nix fmt
This commit is contained in:
parent
5101e93c39
commit
45e7d727a0
@ -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";
|
||||
|
@ -7,7 +7,6 @@
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
inherit (lib.types) float int;
|
||||
inherit (config.modules.system) username;
|
||||
inherit (config.lib.stylix.colors.withHashtag) base00;
|
||||
|
@ -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 = {
|
||||
|
@ -1,8 +1,4 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{ lib, config, ... }:
|
||||
|
||||
let
|
||||
inherit (config.modules.system) username;
|
||||
|
Loading…
Reference in New Issue
Block a user