Compare commits
6 Commits
9afc0c28f1
...
f898bd202f
| Author | SHA1 | Date | |
|---|---|---|---|
| f898bd202f | |||
| a81110c500 | |||
| c4e8bc01f4 | |||
| 4766eff7d3 | |||
| 30ed64caa0 | |||
| 740ca57343 |
@@ -2,7 +2,8 @@
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
file
|
||||
nodejs_20
|
||||
lm_sensors # TODO: this shouldn't be installed on cloud nodes
|
||||
nodejs_20 # TODO: this is for one job on nomad, it should just be a dependency there
|
||||
neovim
|
||||
];
|
||||
}
|
||||
|
||||
@@ -17,10 +17,11 @@
|
||||
|
||||
persistence."/persist/home/ppetru" = {
|
||||
directories = [
|
||||
".local/share/fish"
|
||||
".ssh"
|
||||
"projects"
|
||||
];
|
||||
files = [ ".local/share/fish/fish_history" ];
|
||||
files = [ ];
|
||||
allowOther = true;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -3,6 +3,10 @@
|
||||
fish = {
|
||||
enable = true;
|
||||
|
||||
shellAbbrs = {
|
||||
fixssh = "eval $(tmux show-env | grep ^SSH_AUTH_SOCK | sed 's/=/ /;s/^/set /')";
|
||||
};
|
||||
|
||||
shellInit = ''
|
||||
set fish_greeting
|
||||
|
||||
@@ -49,6 +53,8 @@
|
||||
historyLimit = 20000;
|
||||
keyMode = "vi";
|
||||
extraConfig = ''
|
||||
bind-key t send-prefix
|
||||
bind-key C-t last-window
|
||||
set -g status-left ""
|
||||
set -g status-right ""
|
||||
'';
|
||||
|
||||
@@ -18,7 +18,11 @@
|
||||
"sd_mod"
|
||||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.kernelModules = [
|
||||
"kvm-intel"
|
||||
"coretemp"
|
||||
"nct6775"
|
||||
];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
|
||||
Reference in New Issue
Block a user