JJ config

This commit is contained in:
Nathan Braswell
2025-10-27 22:14:11 -04:00
parent f6040886f1
commit ec3c43a20a
3 changed files with 12 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
{ username, homeDirectory }: ({ config, pkgs, lib, ... }:{
{ username, homeDirectory, backgroundImg, email }: ({ config, pkgs, lib, ... }:{
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
@@ -102,7 +102,7 @@
};
spawn-at-startup = [
{ command = [ "swww-daemon" ]; }
{ command = [ "swww" "img" "${config.stylix.image}" ]; }
{ command = [ "swww" "img" "${backgroundImg}" ]; }
{ command = [ "waybar" ]; }
{ command = [ "xwayland-satellite" ]; }
];
@@ -411,7 +411,14 @@
enable = true;
lfs.enable = true;
userName = "Nathan Braswell";
userEmail = "nathan@braswell.email";
userEmail = email;
};
programs.jujutsu = {
enable = true;
settings.user = {
name = "Nathan Braswell";
email = email;
};
};
programs.vim = {
enable = true;