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; [ environment.packages = with pkgs; [
vdirsyncer tigervnc
msmtp
khal
todoman
neomutt
khal
rbw
isync
git git
tmux tmux
hostname hostname
tigervnc
xorg.xinit
# tar
# awk
# sed
elinks
]; ];
environment.etcBackupExtension = ".bak"; environment.etcBackupExtension = ".bak";

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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