Compare commits

...

2 commits

2 changed files with 27 additions and 13 deletions

View file

@ -35,6 +35,7 @@
username = { username = {
show_always = true; show_always = true;
style_user = "fg:${textColor} bg:${secondColor}"; style_user = "fg:${textColor} bg:${secondColor}";
style_root = "fg:red bg:${secondColor} blink";
format = "[ $user]($style)"; format = "[ $user]($style)";
}; };

View file

@ -16,20 +16,33 @@
programs.dconf.enable = true; programs.dconf.enable = true;
############################################################################# #############################################################################
home-manager.users.matt = { # TODO: use hm for tmux
home-manager.users = {
imports = [ root = {
nur.hmModules.nur imports = [
./dconf.nix ./bashdots.nix
./theme.nix ./nvim.nix
./hyprland.nix ];
./bashdots.nix
./dotfiles.nix
./packages.nix
./nvim.nix
./firefox/main.nix
];
home.stateVersion = "23.05"; home.stateVersion = "23.05";
};
matt = {
imports = [
nur.hmModules.nur
./dconf.nix
./theme.nix
./hyprland.nix
./bashdots.nix
./dotfiles.nix
./packages.nix
./nvim.nix
./firefox/main.nix
];
home.stateVersion = "23.05";
};
}; };
} }