nixos/modules/desktop/default.nix
2023-08-12 02:13:50 +02:00

21 lines
275 B
Nix

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