All checks were successful
/ check (push) Successful in 41s
Fixes: > The option services.logind.lidSwitchExternalPower' defined in /nix/store/xppb9ysh004vwf838dkmvsk3r033nl00-source/hosts/nixedo/configuration.nix' has been renamed to services.logind.settings.Login.HandleLidSwitchExternalPower'. Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
53 lines
980 B
Nix
53 lines
980 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{
|
||
inputs,
|
||
lib,
|
||
pkgs,
|
||
...
|
||
}:
|
||
|
||
{
|
||
imports = [
|
||
inputs.agenix.nixosModules.default
|
||
|
||
../common
|
||
./hardware-configuration.nix
|
||
./homelab.nix
|
||
./modules
|
||
./ports.nix
|
||
./secrets.nix
|
||
./services
|
||
|
||
../../users/opdavies.nix
|
||
];
|
||
|
||
services.logind.settings.Login.HandleLidSwitchExternalPower = "ignore";
|
||
|
||
boot.loader = {
|
||
efi.canTouchEfiVariables = true;
|
||
systemd-boot.enable = true;
|
||
};
|
||
|
||
networking.networkmanager.enable = true;
|
||
|
||
users.users.opdavies.extraGroups = [ "media" ];
|
||
|
||
powerManagement.powertop.enable = true;
|
||
|
||
users.groups.media = { };
|
||
|
||
networking.firewall.allowedTCPPorts = [
|
||
80
|
||
443
|
||
];
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
tree
|
||
vim
|
||
];
|
||
|
||
security.sudo-rs.enable = lib.mkForce false;
|
||
}
|