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 broot
curl curl
difftastic difftastic
#docker
#docker-compose
duf duf
du-dust du-dust
elinks elinks
@ -26,16 +24,12 @@
git git
gnupg gnupg
gopass gopass
gopass-jsonapi
ispell ispell
isync isync
jq jq
lscolors lscolors
lsd lsd
lynx lynx
mpv
mu
neovim
nixfmt nixfmt
nix-info nix-info
nix-prefetch-git nix-prefetch-git
@ -55,17 +49,5 @@
]; ];
programs.gpg.enable = true; 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, ... }: { config, pkgs, ... }:
{ {
imports = [ imports = [
./clojure.nix ./dev-common.nix
]; ];
home.packages = with pkgs; [ 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, ... }: { config, pkgs, ... }:
{ {
imports = [ imports = [
./common.nix
./linux-server.nix ./linux-server.nix
]; ];

View File

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

View File

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

View File

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

View File

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