Skip to content

Commit

Permalink
Merge branch 'ci/automatic-update-2023-09-19'
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Sep 19, 2023
2 parents 0d223a4 + 00cc111 commit e31bf2c
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 36 deletions.
42 changes: 21 additions & 21 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions home/programs/davmail/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ in
smtpPort = 1025;
};
log4j = {
logger.davmail = mkDefault "WARN";
logger.httpclient.wire = mkDefault "WARN";
logger.org.apache.commons.httpclient = mkDefault "WARN";
logger = {
davmail = mkDefault "WARN";
httpclient.wire = mkDefault "WARN";
org.apache.commons.httpclient = mkDefault "WARN";
};
rootLogger = mkDefault "WARN";
};
};
Expand Down
2 changes: 1 addition & 1 deletion home/programs/spectrwm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ in
# region = screen[1]:1280x1024+1280+0
# Launch applications in a workspace of choice
${concatStringsSep "\n" ([ ] ++ mapAttrsToList mkAutorun cfg.autoruns)}
${concatStringsSep "\n" (mapAttrsToList mkAutorun cfg.autoruns)}
# Customize workspace layout at start
# format: ws[idx]:master_grow:master_add:stack_inc:always_raise:stack_mode
Expand Down
19 changes: 11 additions & 8 deletions hosts/nixos-vm/hardware/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@
(modulesPath + "/installer/scan/not-detected.nix")
];

boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];

boot.initrd.luks.devices.root = {
device = "/dev/sda2";
preLVM = true;
boot = {
initrd = {
availableKernelModules = [ "ata_piix" "ohci_pci" "sd_mod" "sr_mod" ];
kernelModules = [ "dm-snapshot" ];
luks.devices.root = {
device = "/dev/sda2";
preLVM = true;
};
};
kernelModules = [ ];
extraModulePackages = [ ];
};

fileSystems."/" =
Expand Down
8 changes: 5 additions & 3 deletions nixos/roles/desktop/mobile/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ in

config = mkIf cfg.enable {
services = {
logind.lidSwitch = "suspend-then-hibernate";
logind.lidSwitchExternalPower = "lock";
logind.lidSwitchDocked = "ignore";
logind = {
lidSwitch = "suspend-then-hibernate";
lidSwitchDocked = "ignore";
lidSwitchExternalPower = "lock";
};
upower.enable = true;
};

Expand Down

0 comments on commit e31bf2c

Please sign in to comment.