mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
22 lines
433 B
Nix
22 lines
433 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
wayland.windowManager.hyprland.enable = true;
|
|
xdg.configFile."hypr/hyprland.conf".source = ./hyprland.conf;
|
|
# TODO integrate this to nix-colors
|
|
xdg.configFile."wofi".source = ./wofi-config;
|
|
home.packages = with pkgs; [
|
|
wofi
|
|
#noto-fonts-emoji
|
|
];
|
|
|
|
programs.waybar = {
|
|
enable = true;
|
|
#settings = {
|
|
#mainBar = {
|
|
#layer = "top";
|
|
#position = "top";
|
|
#};
|
|
#};
|
|
};
|
|
}
|