refactor(treewide): format with alejandra

This commit is contained in:
ooks-io 2024-07-29 15:00:38 +12:00
parent 7fefb94400
commit 61cef505da
216 changed files with 5995 additions and 3969 deletions

View file

@ -1,7 +1,10 @@
{ pkgs, inputs, outputs, ... }:
{
imports = [ ./modules ];
pkgs,
inputs,
outputs,
...
}: {
imports = [./modules];
environment.packages = with pkgs; [
killall
@ -29,7 +32,7 @@
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
time.timeZone = "Pacific/Auckland";
user = {
@ -37,7 +40,7 @@
};
home-manager = {
extraSpecialArgs = { inherit inputs outputs; };
extraSpecialArgs = {inherit inputs outputs;};
config = import ../../../home/user/ooks/ooksphone;
};
}

View file

@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
programs.ssh = {
enable = true;
startAgent = true;

View file

@ -1,11 +1,7 @@
{ pkgs, ... }:
let
fontPackage = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
{pkgs, ...}: let
fontPackage = pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];};
fontPath = "/share/fonts/truetype/NerdFonts/JetBrainsMonoNerdFontMono-Regular.ttf";
in
{
in {
terminal = {
font = fontPackage + fontPath;