Reformat all nix files.

This commit is contained in:
Tom Alexander
2024-12-20 22:37:44 -05:00
parent 764a8c58ce
commit e26118af4f
18 changed files with 549 additions and 410 deletions

View File

@@ -1,15 +1,22 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports = [];
imports = [ ];
environment.systemPackages = with pkgs; [
git
];
home-manager.users.talexander = { pkgs, ... }: {
home.file.".gitconfig" = {
source = ./files/gitconfig_home;
home-manager.users.talexander =
{ pkgs, ... }:
{
home.file.".gitconfig" = {
source = ./files/gitconfig_home;
};
};
};
}