mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-07 10:16:49 +02:00
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:
parent
8d21fa5850
commit
97ae27a86e
@ -1,6 +1,38 @@
|
|||||||
{ pkgs, ... }:
|
{ 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 = {
|
networking = {
|
||||||
hostName = "mobile-nixos";
|
hostName = "mobile-nixos";
|
||||||
wireless.enable = false;
|
wireless.enable = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user