This commit is contained in:
sadan 2024-08-14 18:12:06 -04:00
parent 642a110fde
commit b2f5f31028
No known key found for this signature in database
3 changed files with 23 additions and 7 deletions

View file

@ -8,6 +8,7 @@ let
shell = import ../../common/shell.nix { inherit config pkgs; };
p = import ../../common/pkgs.nix { inherit pkgs config; };
_p1 = p.dev ++ p.gui ++ p.general ++ p.scripts ++ p.gaming;
ol = p.overlays;
zshInitArgs = [
"source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme"
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
@ -68,6 +69,7 @@ nixpkgs.config.allowInsecurePredicate = (pkg: true);
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = _p1;
nixpkgs.overlays = [ol.discord];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = files;