diff --git a/config.nix b/config.nix index d87219b..044ecff 100644 --- a/config.nix +++ b/config.nix @@ -10,7 +10,6 @@ size = "12"; shell = "fish"; # or zsh aliases = { - ls = "ls --color=auto"; }; }; allowUnfree = true; diff --git a/home/hakase.nix b/home/hakase.nix new file mode 100644 index 0000000..ca24b5e --- /dev/null +++ b/home/hakase.nix @@ -0,0 +1,6 @@ +{ + imports = [ + ../modules/home/desktop.nix + ../modules/home/terminal.nix + ]; +} diff --git a/hosts/hakase/configuration.nix b/hosts/hakase/configuration.nix index 616c2cf..ce85521 100644 --- a/hosts/hakase/configuration.nix +++ b/hosts/hakase/configuration.nix @@ -6,9 +6,14 @@ ... }: { imports = [ + inputs.home-manager.nixosModules.home-manager ./hardware-configuration.nix ]; + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.${myConfig.essentials.Username} = import ../../home/hakase.nix; + nixpkgs.config.allowUnfree = myConfig.general.allowUnfree; boot.loader = { diff --git a/packages/eza/home.nix b/packages/eza/home.nix index 0b0b537..a082a74 100644 --- a/packages/eza/home.nix +++ b/packages/eza/home.nix @@ -3,6 +3,8 @@ enable = true; git = true; colors = "auto"; + icons = "auto"; + enableZshIntegration = true; enableFishIntegration = true; enableBashIntegration = true;