From 97ae27a86ed4f243fe1f9401389aa113ffceb95c Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 13 Jun 2024 13:26:02 -0400 Subject: [PATCH] phone: Add base configuration This was my attempt at adding some essential programs to the PinePhone before combining its configuration with this existing nix-config. --- phone/configuration.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/phone/configuration.nix b/phone/configuration.nix index 7a8a031a..400dad3f 100644 --- a/phone/configuration.nix +++ b/phone/configuration.nix @@ -1,6 +1,38 @@ { pkgs, ... }: { + environment.systemPackages = with pkgs; [ + neovim + fish + yazi + bat + w3m + librewolf + git + htop + gnupg + mpv + ncmpcpp + pqiv + qutebrowser + starship + eza + fd + fzf + ripgrep + yt-dlp + neofetch + genact + zellij + p7zip + unar + ]; + + programs.fish.enable = true; + programs.neovim.enable = true; + users.defaultUserShell = pkgs.fish; + environment.shells = [ pkgs.fish ]; + networking = { hostName = "mobile-nixos"; wireless.enable = false;