dotfiles/home/Kell.nix

31 lines
601 B
Nix
Raw Normal View History

2024-06-02 14:50:05 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
(import ./common.nix { inherit inputs config pkgs; })
(import ./hyprland { inherit inputs pkgs; })
(import ./waybar { inherit inputs pkgs; })
./rofi
2024-06-02 17:07:56 +02:00
./alacritty
2024-06-03 00:06:57 +02:00
./firefox
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
];
};
};
programs.waybar = {
settings = {
mainBar = {
output = "DP-2";
};
};
};
}