Skip to content

Commit 1d2a859

Browse files
committed
chore: formatter
1 parent 4a5f95d commit 1d2a859

13 files changed

Lines changed: 87 additions & 81 deletions

File tree

home-manager/discord.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
{
2-
lib,
3-
config,
4-
pkgs,
5-
...
1+
{ lib
2+
, config
3+
, pkgs
4+
, ...
65
}:
76
with lib;
87
let

home-manager/games.nix

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
lib,
3-
config,
4-
pkgs,
5-
unstable ? pkgs,
6-
...
1+
{ lib
2+
, config
3+
, pkgs
4+
, unstable ? pkgs
5+
, ...
76
}:
87
with lib;
98
with lib.my;

home-manager/programming.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
{
2-
config,
3-
lib,
4-
pkgs,
5-
...
1+
{ config
2+
, lib
3+
, pkgs
4+
, ...
65
}:
76
with lib;
87
{

home-manager/zed.nix

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
config,
3-
lib,
4-
pkgs,
5-
unstable,
6-
...
1+
{ config
2+
, lib
3+
, pkgs
4+
, unstable
5+
, ...
76
}:
87
with lib;
98
{

hosts/common-home-manager.nix

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
{ inputs, systemVersion, pkgs, accent ? "pink", flavor ? "latte", desktopName, ... }: {
1+
{ inputs
2+
, systemVersion
3+
, pkgs
4+
, accent ? "pink"
5+
, flavor ? "latte"
6+
, desktopName
7+
, ...
8+
}:
9+
{
210
imports = [
311
inputs.catppuccin.homeModules.catppuccin
412
inputs.nixvim.homeModules.nixvim

hosts/common.nix

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
{
2-
lib,
3-
pkgs,
4-
inputs,
5-
unstable,
6-
master,
7-
hostname,
8-
desktopName,
9-
cores ? 24,
10-
...
1+
{ lib
2+
, pkgs
3+
, inputs
4+
, unstable
5+
, master
6+
, hostname
7+
, desktopName
8+
, cores ? 24
9+
, ...
1110
}:
1211
with lib;
1312
with lib.my;

hosts/framework/configuration.nix

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
{
2-
config,
3-
lib,
4-
pkgs,
5-
hostname,
6-
inputs,
7-
secretDir,
8-
unstable,
9-
master,
10-
desktop ? "xmonad",
11-
...
1+
{ config
2+
, lib
3+
, pkgs
4+
, hostname
5+
, inputs
6+
, secretDir
7+
, unstable
8+
, master
9+
, desktop ? "xmonad"
10+
, ...
1211
}:
1312
with lib;
1413
let

hosts/pc/configuration.nix

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
{
2-
config,
3-
lib,
4-
pkgs,
5-
hostname,
6-
inputs,
7-
secretDir,
8-
unstable,
9-
master,
10-
desktop ? "xmonad",
11-
...
1+
{ config
2+
, lib
3+
, pkgs
4+
, hostname
5+
, inputs
6+
, secretDir
7+
, unstable
8+
, master
9+
, desktop ? "xmonad"
10+
, ...
1211
}:
1312
with lib;
1413
let
@@ -44,7 +43,7 @@ let
4443
enableAutostart = true;
4544
};
4645

47-
inherit (pkgs) remmina; # VNC client
46+
inherit (pkgs) remmina;# VNC client
4847
in
4948
lib.mkMerge [
5049
commonConfig

nixos/desktop/labwc/default.nix

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
config,
3-
lib,
4-
pkgs,
5-
unstable,
6-
...
1+
{ config
2+
, lib
3+
, pkgs
4+
, unstable
5+
, ...
76
}:
87
with lib;
98
let
@@ -26,9 +25,11 @@ let
2625
text = builtins.readFile ./bluetooth-menu-generator.sh;
2726
};
2827

29-
autostartPrograms = builtins.map (
30-
x: "${x} &"
31-
) config.home-manager.users.wittano.desktop.autostart.programs;
28+
autostartPrograms = builtins.map
29+
(
30+
x: "${x} &"
31+
)
32+
config.home-manager.users.wittano.desktop.autostart.programs;
3233
in
3334
{
3435
options.desktop.labwc = {

nixos/hardware/virtualization/default.nix

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
config,
3-
pkgs,
4-
lib,
5-
modulesPath,
6-
...
1+
{ config
2+
, pkgs
3+
, lib
4+
, modulesPath
5+
, ...
76
}:
87
with lib;
98
with lib.my;
@@ -39,7 +38,7 @@ let
3938
timeout 10s modprobe amdgpu
4039
'';
4140
in
42-
/* bash */ ''
41+
/* bash */ ''
4342
set -x
4443
4544
function _reboot() {
@@ -92,7 +91,7 @@ let
9291
modprobe -r amdgpu
9392
'';
9493
in
95-
/* bash */ ''
94+
/* bash */ ''
9695
set -x
9796
9897
function _revert() {

0 commit comments

Comments
 (0)