More stuff

work
Matthew Ess 2021-01-10 23:44:24 -05:00
parent 6eb9f334d2
commit 3ff6eaf667
4 changed files with 17 additions and 2 deletions

View File

@ -2,7 +2,8 @@
{ {
imports = [ ./common.nix ./graphical.nix ../users/mat-hm-laptop.nix ]; imports =
[ ./common.nix ./local.nix ./graphical.nix ../users/mat-hm-laptop.nix ];
# enable power management # enable power management
powerManagement.enable = true; powerManagement.enable = true;

6
profiles/local.nix Normal file
View File

@ -0,0 +1,6 @@
{ config, ... }: {
networking.hosts = {
"192.168.1.246" = [ "gagarin.local" ];
"192.168.1.165" = [ "pi.hole" ];
};
}

View File

@ -2,6 +2,6 @@
{ {
imports = [ ./common.nix ]; imports = [ ./common.nix ./local.nix ];
} }

View File

@ -106,6 +106,14 @@ in {
newSession = true; newSession = true;
shortcut = "a"; shortcut = "a";
baseIndex = 1; baseIndex = 1;
terminal = "tmux-256color";
extraConfig = ''
set -g mouse on
setw -g pane-base-index 1
unbind %
bind | split-window -h
bind _ split-window -v
'';
}; };
}; };