Compare commits
No commits in common. "1a931b76bdc442404de4f5278210927238dbf73f" and "6f64840eb142fa076364089484884365112ca666" have entirely different histories.
1a931b76bd
...
6f64840eb1
5 changed files with 7 additions and 7 deletions
|
|
@ -1,14 +1,13 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./global
|
||||
./features/cli
|
||||
];
|
||||
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
set -g default-terminal "tmux-256color"
|
||||
set -g status off
|
||||
set -g status on
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
3
justfile
3
justfile
|
|
@ -8,4 +8,5 @@ switch *ARGS:
|
|||
sudo nixos-rebuild switch --flake .#{{ARGS}}
|
||||
|
||||
deploy *ARGS:
|
||||
nixos-rebuild switch -S --flake .#{{ARGS}} --target-host {{ARGS}}
|
||||
nixos-rebuild switch --flake .#{{ARGS}} --target-host {{ARGS}} --use-remote-sudo
|
||||
|
||||
|
|
|
|||
|
|
@ -49,6 +49,9 @@
|
|||
oci-containers.backend = "docker";
|
||||
};
|
||||
|
||||
# Required for smooth remote deployments
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
|
||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,9 +4,6 @@
|
|||
config = builtins.readFile ./inspircd.conf;
|
||||
};
|
||||
|
||||
# Ensure log directory exists
|
||||
systemd.services.inspircd.serviceConfig.LogsDirectory = "inspircd";
|
||||
|
||||
environment.etc = {
|
||||
"inspircd/inspircd.motd".source = ./inspircd.motd;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -589,7 +589,7 @@
|
|||
# The following log tag is highly default and uncustomised. It is recommended you
|
||||
# sort out your own log tags. This is just here so you get some output.
|
||||
|
||||
<log method="file" type="* -USERINPUT -USEROUTPUT" level="default" target="/var/log/inspircd/ircd.log">
|
||||
<log method="file" type="* -USERINPUT -USEROUTPUT" level="default" target="ircd.log">
|
||||
|
||||
#-#-#-#-#-#-#-#-#-#-#-#-#- WHOWAS OPTIONS -#-#-#-#-#-#-#-#-#-#-#-#-#
|
||||
# #
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue