fixing sshd and suspend problems
This commit is contained in:
parent
22dbeab3f8
commit
a94e8afe34
4 changed files with 40 additions and 27 deletions
|
@ -29,6 +29,8 @@
|
|||
programs.custom.steam.enable = false;
|
||||
programs.custom.video.enable = true;
|
||||
|
||||
system.custom.suspend.enable = false;
|
||||
|
||||
services.printing.enable = true;
|
||||
|
||||
# fonts
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
./wtf.nix
|
||||
];
|
||||
|
||||
system.custom.suspend.enable = lib.mkDefault true;
|
||||
|
||||
backup.dirs =
|
||||
[ "/home/palo/.password-store" "/home/palo/.task" "/home/palo/.vit" ];
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
{ config, ... }: {
|
||||
# make sure ssh is only available trough the tinc
|
||||
#networking.firewall.extraCommands = ''
|
||||
# iptables -t nat -A PREROUTING ! -i tinc.private -p tcp -m tcp --dport 22 -j REDIRECT --to-ports 0
|
||||
#'';
|
||||
networking.firewall.extraCommands = ''
|
||||
iptables --table nat --append PREROUTING ! --in-interface tinc.+ --protocol tcp --match tcp --dport 22 --jump REDIRECT --to-ports 0
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -1,27 +1,37 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
with lib;
|
||||
|
||||
{
|
||||
systemd.services.screenlock = {
|
||||
before = [ "sleep.target" ];
|
||||
requiredBy = [ "sleep.target" ];
|
||||
environment = let
|
||||
display = if (config.services.xserver.display != null) then
|
||||
config.services.xserver.display
|
||||
else
|
||||
0;
|
||||
in { DISPLAY = ":${toString display}"; };
|
||||
script = ''
|
||||
${pkgs.xlockmore}/bin/xlock -mode life1d -size 1 &
|
||||
sleep 1
|
||||
'';
|
||||
serviceConfig = {
|
||||
SyslogIdentifier = "screenlock";
|
||||
#Type = "simple";
|
||||
Type = "forking";
|
||||
User = config.users.users.mainUser.name;
|
||||
let
|
||||
|
||||
cfg = config.system.custom.suspend;
|
||||
in {
|
||||
|
||||
options.system.custom.suspend.enable = mkEnableOption "use xlock in suspend";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
systemd.services.screenlock = {
|
||||
before = [ "sleep.target" ];
|
||||
requiredBy = [ "sleep.target" ];
|
||||
environment = let
|
||||
display = if (config.services.xserver.display != null) then
|
||||
config.services.xserver.display
|
||||
else
|
||||
0;
|
||||
in { DISPLAY = ":${toString display}"; };
|
||||
script = ''
|
||||
${pkgs.xlockmore}/bin/xlock -mode life1d -size 1 &
|
||||
sleep 1
|
||||
'';
|
||||
serviceConfig = {
|
||||
SyslogIdentifier = "screenlock";
|
||||
#Type = "simple";
|
||||
Type = "forking";
|
||||
User = config.users.users.mainUser.name;
|
||||
};
|
||||
};
|
||||
|
||||
services.logind.lidSwitch = "suspend";
|
||||
|
||||
};
|
||||
|
||||
services.logind.lidSwitch = "suspend";
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue