Run nixpkgs-fmt

This commit is contained in:
Spotlight 2023-09-17 09:38:02 -05:00
parent fbc1f9235f
commit aed1e3f2bf
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
7 changed files with 30 additions and 18 deletions

View file

@ -34,4 +34,4 @@
let g:airline_powerline_fonts = 1
'';
};
}
}

View file

@ -12,7 +12,7 @@
# password-store
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [exts.pass-otp]);
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
settings = {
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
};

View file

@ -8,25 +8,28 @@ let
# Whether to configure various programs to leverage GPG.
gpg = specialArgs.gpg or false;
in {
in
{
# It's standard convention that Darwin has the username
# "spot" - "spotlight" was reserved by the system at some point.
# (Sigh... the downsides of sharing a namesake.)
home.username = if pkgs.stdenv.isDarwin then
"spot"
else
"spotlight";
home.username =
if pkgs.stdenv.isDarwin then
"spot"
else
"spotlight";
home.homeDirectory = if pkgs.stdenv.isDarwin then
"/Users/spot"
else
"/home/spotlight";
home.homeDirectory =
if pkgs.stdenv.isDarwin then
"/Users/spot"
else
"/home/spotlight";
# Git
programs.git = {
enable = true;
lfs.enable = true;
userName = "Spotlight";
userEmail = "spotlight@joscomputing.space";
extraConfig = {

View file

@ -9,7 +9,8 @@ let
rev = "6554045b1184b213fdc9d731a45e8a75858291de";
sha256 = "yhgowvJfxVdJE1yVYPWnJYvzhMsPc+HgkmDa++CcTDo=";
};
in {
in
{
# Very opinionated :)
programs.zsh = {
enable = true;
@ -62,4 +63,4 @@ in {
# We'd like to have the iTerm2 shell integration utilities in ~/.iterm2.
home.file.".iterm2".source = "${iterm2_shell_integration}/utilities";
}
}