dotfiles/home/Kell.nix

37 lines
777 B
Nix

{ 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
];
services.hyprpaper = {
settings = {
wallpaper = [
"DP-3,${./hyprland/files/wallpaper.png}"
"DP-2,${./hyprland/files/wallpaper.png}"
"HDMI-A-1,${./hyprland/files/wallpaper.png}"
];
};
};
gtk.iconTheme = {
name = "Papirus";
gtk.iconTheme.package = pkgs.papirus-icon-theme;
};
programs.waybar = { settings = { mainBar = { output = "DP-2"; }; }; };
}