dotfiles/home/utils/desktop.nix

24 lines
434 B
Nix
Raw Normal View History

2024-06-10 16:28:16 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
(import ./common.nix { inherit inputs config pkgs; })
(import ../hyprland { inherit inputs pkgs; })
(import ../waybar { inherit inputs pkgs; })
../rofi
../alacritty
../kitty
../firefox
../ssh
../mpv
];
home.packages = with pkgs; [
telegram-desktop
webcord
devenv
iwgtk
element-desktop
evince
loupe
];
}