nixos/modules/desktop/default.nix
Casper V. Kristensen 8d40191a93 spotify
2023-08-11 17:45:16 +02:00

20 lines
257 B
Nix

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