dotfiles/home/Kell.nix

31 lines
690 B
Nix
Raw Normal View History

2024-06-02 14:50:05 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
2024-06-03 16:02:50 +02:00
(import ./common.nix { inherit inputs config pkgs; })
(import ./hyprland { inherit inputs pkgs; })
(import ./waybar { inherit inputs pkgs; })
./rofi
./alacritty
2024-06-03 19:12:42 +02:00
./kitty
2024-06-03 16:02:50 +02:00
./firefox
./ssh
2024-06-03 18:06:35 +02:00
./mpv
2024-06-02 14:50:05 +02:00
];
services.hyprpaper = {
settings = {
wallpaper = [
2024-06-02 16:46:57 +02:00
"DP-3,${./hyprland/files/wallpaper.png}"
"DP-2,${./hyprland/files/wallpaper.png}"
"HDMI-A-1,${./hyprland/files/wallpaper.png}"
2024-06-02 14:50:05 +02:00
];
};
};
2024-06-03 02:00:07 +02:00
gtk.iconTheme = {
2024-06-03 16:02:50 +02:00
name = "Papirus";
gtk.iconTheme.package = pkgs.papirus-icon-theme;
2024-06-02 14:50:05 +02:00
};
2024-06-03 16:02:50 +02:00
programs.waybar = { settings = { mainBar = { output = "DP-2"; }; }; };
2024-06-02 14:50:05 +02:00
}