nixos/modules/desktop/default.nix
2023-08-08 18:17:50 +02:00

19 lines
245 B
Nix

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