nixos/modules/desktop/default.nix
2023-08-13 19:28:37 +02:00

23 lines
312 B
Nix

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