nixos/modules/desktop/default.nix
2023-08-06 14:27:57 +02:00

18 lines
230 B
Nix

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