nixos/modules/desktop/default.nix

23 lines
324 B
Nix
Raw Normal View History

2023-08-06 22:17:03 +02:00
{ pkgs, ... }: {
2023-08-01 15:35:09 +02:00
imports = [
2023-08-12 02:13:50 +02:00
./network.nix
2023-08-01 15:35:09 +02:00
./ssh.nix
./sway.nix
2023-08-12 03:20:56 +02:00
./syncthing.nix
2023-08-01 15:35:09 +02:00
];
2023-08-04 13:08:58 +02:00
environment.systemPackages = with pkgs; [
2023-08-06 14:27:57 +02:00
discord
2023-08-13 19:43:24 +02:00
firefox-wayland
2023-08-04 13:08:58 +02:00
keepassxc
2023-08-08 18:17:50 +02:00
mpv
2023-08-11 17:45:16 +02:00
spotify
2023-08-17 00:47:48 +02:00
tor-browser-bundle-bin
2023-08-08 18:17:50 +02:00
vlc
2023-08-04 13:08:58 +02:00
];
services.logind.extraConfig = ''
HandlePowerKey=ignore
'';
2023-08-01 15:35:09 +02:00
}