Format using nixfmt

This commit is contained in:
2024-07-17 22:22:04 +02:00
parent a85c6f2f4b
commit 90ccaa07bd
54 changed files with 671 additions and 409 deletions

View File

@@ -2,13 +2,10 @@
let
batlvl = pkgs.writeShellApplication {
name = "batlvl";
runtimeInputs = [
];
runtimeInputs = [ ];
text = builtins.readFile ./batlvl.sh;
};
in
{
home.packages = [
batlvl
];
home.packages = [ batlvl ];
}

View File

@@ -1,7 +1,6 @@
{ pkgs, config, ... }: {
imports = [
./lockhelper.nix
];
{ pkgs, config, ... }:
{
imports = [ ./lockhelper.nix ];
home.file.".local/bin/hl-no-opacity" = {
source = ./hl-no-opacity.sh;
executable = true;

View File

@@ -10,7 +10,5 @@ let
};
in
{
home.packages = [
lockhelper
];
home.packages = [ lockhelper ];
}