diff --git a/hosts/remus/configuration.nix b/hosts/remus/configuration.nix index cb86d6d..d6ea594 100644 --- a/hosts/remus/configuration.nix +++ b/hosts/remus/configuration.nix @@ -90,7 +90,10 @@ extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; [ firefox - # thunderbird + thunderbird + signal-desktop + keepassxc + syncthing ]; }; diff --git a/hosts/remus/home.nix b/hosts/remus/home.nix index 88b1d45..3770fb6 100644 --- a/hosts/remus/home.nix +++ b/hosts/remus/home.nix @@ -17,12 +17,12 @@ # The home.packages option allows you to install Nix packages into your # environment. - home.packages = [ + home.packages = with pkgs; [ # # Adds the 'hello' command to your environment. It prints a friendly # # "Hello, world!" when run. # pkgs.hello - pkgs.nerdfonts + nerdfonts # # It is sometimes useful to fine-tune packages, for example, by applying # # overrides. You can do that directly here, just don't forget the # # parentheses. Maybe you want to install Nerd Fonts with a limited number of @@ -35,6 +35,18 @@ # (pkgs.writeShellScriptBin "my-hello" '' # echo "Hello, ${config.home.username}!" # '') + + # Core + ranger + ## GNOME + gnomeExtensions.gsconnect + gnomeExtensions.syncthing-icon + + # Maker + freecad + + # Development + lazygit ]; programs.zsh.enable = true;