dotfiles/home/nixos.nix

27 lines
475 B
Nix
Raw Normal View History

2024-06-02 14:38:25 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
2024-06-02 14:39:54 +02:00
(import ./common.nix { inherit inputs config pkgs; })
2024-06-02 14:50:05 +02:00
(import ./hyprland { inherit inputs pkgs; })
(import ./waybar { inherit inputs pkgs; })
./rofi
2024-06-02 14:38:25 +02:00
];
2024-06-02 14:50:05 +02:00
services.hyprpaper = {
settings = {
wallpaper = [
"Virtual-1,${./hyprland/files/wallpaper.png}"
];
};
};
programs.waybar = {
settings = {
mainBar = {
output = "Virtual-1";
};
};
};
2024-06-02 14:38:25 +02:00
}