Compare commits
2 Commits
f7d94aa6a8
...
a57a9a46a2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a57a9a46a2 | ||
|
|
ec3c43a20a |
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user