Martin Berg Alstad f60462a770
🧹 Organizing
Moved code to separate files.

Rofi config in home-manager.

Moved home.nix to /home.

Scripts to format and rebuild
2024-12-29 00:34:39 +01:00

18 lines
230 B
Nix

{ pkgs, ... }:
{
imports = [
./waybar.nix
./wallpaper.nix
];
environment.systemPackages = with pkgs; [
swaynotificationcenter
];
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
}