This commit is contained in:
randomuser 2024-03-15 18:51:36 -05:00
parent 36486ba1a2
commit 2690b6296f
10 changed files with 50 additions and 9 deletions

16
boxes/phone/bash.nix Normal file
View File

@ -0,0 +1,16 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
bash
];
home.file = {
".bashrc" = {
source = lib.mkDefault ../../home/bash/bashrc;
};
".bash_profile" = {
source = lib.mkDefault ../../home/bash/profile;
};
};
}

View File

@ -13,17 +13,16 @@
};
environment.packages = with pkgs; [
vdirsyncer
msmtp
khal
todoman
neomutt
khal
rbw
isync
tigervnc
git
tmux
hostname
tigervnc
xorg.xinit
# tar
# awk
# sed
elinks
];
environment.etcBackupExtension = ".bak";

View File

@ -11,6 +11,7 @@
../../home/msmtp
../../home/neomutt
../../home/rbw
./bash.nix
];
home.stateVersion = "23.05";

View File

@ -39,7 +39,8 @@
phone-nixpkgs,
home-manager-phone,
nix-on-droid,
... }@inputs: {
...
}@inputs: {
nixOnDroidConfigurations = {
phone = nix-on-droid.lib.nixOnDroidConfiguration {
modules = [

View File

@ -1,6 +1,10 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
isync
];
home.file = {
".config/isync/config" = {
source = ./config;

View File

@ -1,6 +1,10 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
khal
];
home.file = {
".config/khal/config" = {
source = ./config;

View File

@ -1,6 +1,10 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
msmtp
];
home.file = {
".config/msmtp/config" = {
source = ./config;

View File

@ -1,6 +1,10 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
neomutt
];
home.file = {
".config/neomutt/neomuttrc" = {
source = ./neomuttrc;

View File

@ -1,6 +1,10 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
todoman
];
home.file = {
".config/todoman/config.py" = {
source = ./config.py;

View File

@ -1,6 +1,10 @@
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
vdirsyncer
];
home.file = {
".config/vdirsyncer/config" = {
source = ./config;