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

24 lines
341 B
Nix

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