chore: Use nixfmt reformat all nix source code
This commit is contained in:
parent
1cdf00cefe
commit
11337b8f9e
184 changed files with 2349 additions and 1943 deletions
|
|
@ -1,5 +1,8 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
{ outputs, ... }:
|
||||
_final: prev:
|
||||
let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
in
|
||||
{
|
||||
qq = outputs.packages."${system}".QQ;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,23 +1,25 @@
|
|||
{...} @ args: final: prev: let
|
||||
{ ... }@args:
|
||||
final: prev:
|
||||
let
|
||||
inherit (prev) lib;
|
||||
in
|
||||
with lib;
|
||||
pipe
|
||||
[
|
||||
./niri.nix
|
||||
./radicle-explorer.nix
|
||||
./wshowkeys.nix
|
||||
# ./QQ.nix
|
||||
./helix.nix
|
||||
./zulip.nix
|
||||
./nautilus.nix
|
||||
./vim.nix
|
||||
./prismlauncher.nix
|
||||
with lib;
|
||||
pipe
|
||||
[
|
||||
./niri.nix
|
||||
./radicle-explorer.nix
|
||||
./wshowkeys.nix
|
||||
# ./QQ.nix
|
||||
./helix.nix
|
||||
./zulip.nix
|
||||
./nautilus.nix
|
||||
./vim.nix
|
||||
./prismlauncher.nix
|
||||
|
||||
# Nur
|
||||
./nur.nix
|
||||
]
|
||||
[
|
||||
(map (file: import file args))
|
||||
(overlays: (composeManyExtensions overlays) final prev)
|
||||
]
|
||||
# Nur
|
||||
./nur.nix
|
||||
]
|
||||
[
|
||||
(map (file: import file args))
|
||||
(overlays: (composeManyExtensions overlays) final prev)
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
{ outputs, ... }:
|
||||
_final: prev:
|
||||
let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
in
|
||||
{
|
||||
helix = outputs.packages."${system}".helix;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{...}: _final: prev: {
|
||||
{ ... }: _final: prev: {
|
||||
nautilus = prev.nautilus.overrideAttrs (nprev: {
|
||||
buildInputs =
|
||||
(nprev.buildInputs or [])
|
||||
(nprev.buildInputs or [ ])
|
||||
++ (with prev.gst_all_1; [
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{inputs, ...}: inputs.niri-flake.overlays.niri
|
||||
{ inputs, ... }: inputs.niri-flake.overlays.niri
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{inputs, ...}: inputs.nur.overlays.default
|
||||
{ inputs, ... }: inputs.nur.overlays.default
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
{ outputs, ... }:
|
||||
_final: prev:
|
||||
let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
in
|
||||
{
|
||||
prismlauncher = outputs.packages.${system}.prismlauncher';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
{ outputs, ... }:
|
||||
_final: prev:
|
||||
let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
in
|
||||
{
|
||||
radicle-explorer = outputs.packages."${system}".radicle-explorer';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
{ outputs, ... }:
|
||||
_final: prev:
|
||||
let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
in
|
||||
{
|
||||
vim = outputs.packages.${system}.vim';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
{ outputs, ... }:
|
||||
_final: prev:
|
||||
let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
in
|
||||
{
|
||||
wshowkeys = outputs.packages.${system}.wshowkeys-mao;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{...}: _final: prev: {
|
||||
{ ... }: _final: prev: {
|
||||
zulip = prev.zulip.overrideAttrs (
|
||||
_finalAttrs: prevAttrs: {
|
||||
nativeBuildInputs = prevAttrs.nativeBuildInputs ++ [prev.makeWrapper];
|
||||
nativeBuildInputs = prevAttrs.nativeBuildInputs ++ [ prev.makeWrapper ];
|
||||
postInstall =
|
||||
#bash
|
||||
''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue