diff --git a/hosts/common/home.nix b/hosts/common/home.nix index 7891f11..eb98118 100644 --- a/hosts/common/home.nix +++ b/hosts/common/home.nix @@ -42,6 +42,8 @@ swig pandoc gh + fzf + eza # GUI apps vscode diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 6d83102..1012325 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -76,8 +76,15 @@ }; # Hyrpland Install - programs.hyprland.enable = true; - + programs = { + hyprland = { + enable = true; + }; + zsh = { + enable = true; + enableAutosuggestions = true; + }; + }; # Hint Electron Apps to use Wayland environment = { sessionVariables.NIXOS_OZONE_WL = "1"; @@ -90,7 +97,7 @@ # $ nix search wget environment.systemPackages = with pkgs; [ # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - wget + wget git tree kitty @@ -106,7 +113,7 @@ cudatoolkit # Theme SDDM - sddm-astronaut + sddm-astronaut ]; # Some programs need SUID wrappers, can be configured further or are diff --git a/hosts/nixos/modules.nix b/hosts/nixos/modules.nix index 83cf4b8..2355746 100644 --- a/hosts/nixos/modules.nix +++ b/hosts/nixos/modules.nix @@ -13,5 +13,6 @@ ../../modules/common/spotify.nix # Spotify/Spicetify ../../modules/common/ssh.nix ../../modules/common/ai.nix + #../../modules/home-manager/shell.nix ]; }