dotfiles/home/nixos.nix

19 lines
423 B
Nix
Raw Normal View History

2024-06-02 14:38:25 +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
2024-06-02 14:38:25 +02:00
];
2024-06-02 14:50:05 +02:00
services.hyprpaper = {
settings = {
2024-06-03 16:02:50 +02:00
wallpaper = [ "Virtual-1,${./hyprland/files/wallpaper.png}" ];
2024-06-02 14:50:05 +02:00
};
};
2024-06-03 16:02:50 +02:00
programs.waybar = { settings = { mainBar = { output = "Virtual-1"; }; }; };
2024-06-02 14:38:25 +02:00
}