nixos/modules/desktop/default.nix

29 lines
479 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-23 21:18:40 +02:00
./alacritty.nix
2023-08-23 23:22:12 +02:00
./clipman.nix
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-13 19:43:24 +02:00
firefox-wayland
2023-08-04 13:08:58 +02:00
keepassxc
2023-08-20 16:18:20 +02:00
(kodi-wayland.withPackages (kodiPackages: with kodiPackages; [
jellyfin
]))
2023-08-17 01:51:48 +02:00
libqalculate
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-22 02:48:58 +02:00
webcord # discord
2023-08-04 13:08:58 +02:00
];
services.logind.extraConfig = ''
HandlePowerKey=ignore
'';
2023-08-01 15:35:09 +02:00
}