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.
This commit is contained in:
Donovan Glover 2024-06-13 13:26:02 -04:00
parent 8d21fa5850
commit 97ae27a86e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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;