diff --git a/hosts/sombrero/configuration.nix b/hosts/sombrero/configuration.nix index 357a2d7..dae6518 100644 --- a/hosts/sombrero/configuration.nix +++ b/hosts/sombrero/configuration.nix @@ -69,7 +69,6 @@ gnumake mkpasswd vim - unar ]; config-manager = { diff --git a/hosts/sombrero/home.nix b/hosts/sombrero/home.nix index 948772a..94a9b6d 100644 --- a/hosts/sombrero/home.nix +++ b/hosts/sombrero/home.nix @@ -1,6 +1,5 @@ -{ inputs, ... }: +{ inputs, pkgs, ... }: { - imports = [ inputs.home-manager.nixosModules.home-manager ]; config = { @@ -14,7 +13,9 @@ home.username = "alex"; home.homeDirectory = "/home/alex"; - home.packages = []; + home.packages = [ + pkgs.unar + ]; home.stateVersion = "22.11"; };