nix-config/desktop/default.nix
Donovan Glover 8258530c58
Add packages
zallij is a cool tmux replacement that has sane defaults.
2023-05-23 19:07:39 -04:00

51 lines
784 B
Nix

{ pkgs, ... }:
{
imports = [
./dual-function-keys
./dunst
./fcitx5
./fonts
./gtk
./hyprland
./mozc
./nwg-dock
./pipewire
./rofi
./stylix
./swaylock
./udiskie
./waybar
./xcursor
./xdg-user-dirs
./xresources
./xserver
];
environment.systemPackages = with pkgs; [
grim
slurp
wl-clipboard
lnch
wev
swww
kickoff
greetd.tuigreet
];
services.greetd = {
enable = true;
restart = false;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
user = "greeter";
};
initial_session = {
command = "${pkgs.hyprland}/bin/Hyprland";
user = "user";
};
};
};
}