Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan Braswell
a57a9a46a2 Merge branch 'main' of https://forge.room409.xyz/miloignis/nix_config 2025-10-27 22:14:21 -04:00
Nathan Braswell
ec3c43a20a JJ config 2025-10-27 22:14:11 -04:00
3 changed files with 12 additions and 5 deletions

View File

@@ -45,7 +45,7 @@
})); }));
homeManagerSharedModule = { homeManagerSharedModule = {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.users.nathan = ((import ./home-manager/home.nix) { username = "nathan"; homeDirectory = "/home/nathan"; }); home-manager.users.nathan = ((import ./home-manager/home.nix) { username = "nathan"; homeDirectory = "/home/nathan"; backgroundImg = config.stylix.image });
}; };
commonConfigFunc = ({ config, lib, pkgs, modulesPath, ... }: (specificPkgs: { commonConfigFunc = ({ config, lib, pkgs, modulesPath, ... }: (specificPkgs: {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;

View File

@@ -27,7 +27,7 @@
# Specify your home configuration modules here, for example, # Specify your home configuration modules here, for example,
# the path to your home.nix. # the path to your home.nix.
modules = [ modules = [
((import ./home.nix) { username = "nbraswell6"; homeDirectory = "/home/nbraswell6";}) ((import ./home.nix) { username = "nbraswell6"; homeDirectory = "/home/nbraswell6"; backgroundImg = "/home/nbraswell6"; email = "nathan.braswell@gtri.gatech.edu"; })
#niri.nixosModules.niri #niri.nixosModules.niri
niri.homeModules.niri niri.homeModules.niri
]; ];

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 # This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage # configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards # when a new Home Manager release introduces backwards
@@ -108,7 +108,7 @@
}; };
spawn-at-startup = [ spawn-at-startup = [
{ command = [ "swww-daemon" ]; } { command = [ "swww-daemon" ]; }
{ command = [ "swww" "img" "${config.stylix.image}" ]; } { command = [ "swww" "img" "${backgroundImg}" ]; }
{ command = [ "waybar" ]; } { command = [ "waybar" ]; }
{ command = [ "xwayland-satellite" ]; } { command = [ "xwayland-satellite" ]; }
]; ];
@@ -420,7 +420,14 @@
enable = true; enable = true;
lfs.enable = true; lfs.enable = true;
userName = "Nathan Braswell"; userName = "Nathan Braswell";
userEmail = "nathan@braswell.email"; userEmail = email;
};
programs.jujutsu = {
enable = true;
settings.user = {
name = "Nathan Braswell";
email = email;
};
}; };
programs.vim = { programs.vim = {
enable = true; enable = true;