Tweak home-manager config

This commit is contained in:
David Morgan 2022-10-22 14:37:23 +01:00
parent 2cff657838
commit 2904502b4b
Signed by: djm
GPG Key ID: C171251002C200F2
8 changed files with 43 additions and 29 deletions

View File

@ -15,8 +15,6 @@
broot
curl
difftastic
#docker
#docker-compose
duf
du-dust
elinks
@ -26,16 +24,12 @@
git
gnupg
gopass
gopass-jsonapi
ispell
isync
jq
lscolors
lsd
lynx
mpv
mu
neovim
nixfmt
nix-info
nix-prefetch-git
@ -55,17 +49,5 @@
];
programs.gpg.enable = true;
programs.tmux = {
enable = true;
terminal = "screen-256color";
#tmuxp.enable = true;
extraConfig = ''
set-option -g status-bg '#666666'
set-option -g status-fg '#aaaaaa'
set-option -g status-left-length 50
set-option -g status-right " #(date ''\'+%a, %b %d - %I:%M''\') "
'';
};
}

View File

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [
./clojure.nix
./dev-common.nix
];
home.packages = with pkgs; [

View File

@ -0,0 +1,31 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./clojure.nix
];
home.packages = with pkgs; [
docker
docker-compose
gopass-jsonapi
mpv
mu
neovim
];
programs.tmux = {
enable = true;
terminal = "screen-256color";
#tmuxp.enable = true;
extraConfig = ''
set-option -g status-bg '#666666'
set-option -g status-fg '#aaaaaa'
set-option -g status-left-length 50
set-option -g status-right " #(date ''\'+%a, %b %d - %I:%M''\') "
'';
};
}

View File

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./linux-server.nix
];

View File

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./linux-dev.nix
];

View File

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [
./clojure.nix
./dev-common.nix
];
#services.emacs.package = pkgs.emacsUnstable;

View File

@ -1,12 +1,16 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
bitlbee
bitlbee-discord
emacs-nox
irssi
imports = [
./common.nix
];
home.packages = with pkgs; [
emacs-nox
irssi
msmtp
neomutt
];
## TODO tmux
}

View File

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./darwin.nix
];