diff --git a/configuration.nix b/configuration.nix index d22d2b5..a5105f6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -11,6 +11,68 @@ # ]; + # List packages installed in system profile. To search, run: + # $ 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 + bitwarden-cli + bitwarden-desktop + bitwarden-menu + brave + btop + calibre + curl + ddev + diffr + docker + fish + fishPlugins.done + firefoxpwa + fsearch + gimp-with-plugins + git + git-open + gnucash + kdePackages.filelight + kdePackages.isoimagewriter + kdePackages.kdenetwork-filesharing + kdePackages.konqueror + kdePackages.partitionmanager + kdePackages.sierra-breeze-enhanced + keepassxc + libreoffice-qt6-fresh + magic-wormhole + meld + mkcert + neovim + nextcloud-client + # nfs-utils + nix-search-cli + php # does PHP 8.2 currently and there's php81, php83, and php84 alternatives + python3 + recoll + samba + signal-desktop + strawberry-qt6 + thunderbird + trashy + vimPlugins.vim-wayland-clipboard + wget + whois + vscodium + wl-clipboard-rs + zoxide + zulip + zulip-term + ]; + environment.pathsToLink = [ "/share/fish" ]; + + # Make it possible for ddev to modify the /etc/hosts file. + # Otherwise you'll have to manually change the + # hosts configuration after creating a new ddev project. + environment.etc.hosts.mode = "0644"; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -149,68 +211,6 @@ "electron-27.3.11" ]; - # List packages installed in system profile. To search, run: - # $ 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 - bitwarden-cli - bitwarden-desktop - bitwarden-menu - brave - btop - calibre - curl - ddev - diffr - docker - fish - fishPlugins.done - firefoxpwa - fsearch - gimp-with-plugins - git - git-open - gnucash - kdePackages.filelight - kdePackages.isoimagewriter - kdePackages.kdenetwork-filesharing - kdePackages.konqueror - kdePackages.partitionmanager - kdePackages.sierra-breeze-enhanced - keepassxc - libreoffice-qt6-fresh - magic-wormhole - meld - mkcert - neovim - nextcloud-client - # nfs-utils - nix-search-cli - php # does PHP 8.2 currently and there's php81, php83, and php84 alternatives - python3 - recoll - samba - signal-desktop - strawberry-qt6 - thunderbird - trashy - vimPlugins.vim-wayland-clipboard - wget - whois - vscodium - wl-clipboard-rs - zoxide - zulip - zulip-term - ]; - environment.pathsToLink = [ "/share/fish" ]; - - # Make it possible for ddev to modify the /etc/hosts file. - # Otherwise you'll have to manually change the - # hosts configuration after creating a new ddev project. - environment.etc.hosts.mode = "0644"; - # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true;