feat(zsh): show ASCII logo in a new terminal

This commit is contained in:
Oliver Davies 2023-08-11 19:55:56 +01:00
parent b7dca115ae
commit 577054a9e5
6 changed files with 30 additions and 9 deletions

View file

@ -1,4 +1,4 @@
{ inputs, username }:
{ inputs, self, username }:
{ desktop }:
@ -10,7 +10,7 @@ inputs.nixpkgs.lib.nixosSystem {
modules = [
inputs.home-manager.nixosModules.home-manager {
home-manager = {
extraSpecialArgs = { inherit inputs desktop username; };
extraSpecialArgs = { inherit inputs desktop self username; };
useGlobalPkgs = true;
useUserPackages = true;
users."${username}" = import ./home-manager.nix;