Moved code to separate files. Rofi config in home-manager. Moved home.nix to /home. Scripts to format and rebuild
18 lines
230 B
Nix
18 lines
230 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./waybar.nix
|
|
./wallpaper.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
swaynotificationcenter
|
|
];
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
}
|