mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-17 18:20:56 +01:00
chore: Run nix fmt
This commit is contained in:
parent
5101e93c39
commit
45e7d727a0
@ -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";
|
||||||
|
@ -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;
|
||||||
|
@ -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 = {
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
{
|
{ lib, config, ... }:
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (config.modules.system) username;
|
inherit (config.modules.system) username;
|
||||||
|
Loading…
Reference in New Issue
Block a user