More stuff
parent
6eb9f334d2
commit
3ff6eaf667
|
@ -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;
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, ... }: {
|
||||||
|
networking.hosts = {
|
||||||
|
"192.168.1.246" = [ "gagarin.local" ];
|
||||||
|
"192.168.1.165" = [ "pi.hole" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
imports = [ ./common.nix ];
|
imports = [ ./common.nix ./local.nix ];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue