nixos/modules/desktop/default.nix
2023-08-04 13:08:58 +02:00

18 lines
218 B
Nix

{ pkgs, ... }:
{
imports = [
./firefox.nix
./ssh.nix
./sway.nix
];
environment.systemPackages = with pkgs; [
keepassxc
];
services.logind.extraConfig = ''
HandlePowerKey=ignore
'';
}