nixos/modules/desktop/default.nix
2023-08-17 00:47:48 +02:00

23 lines
324 B
Nix

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