Files
NixOS/niri/niri.nix
Cookiez 7a0ea8c4f1 New services and package updates
- Added support for open-webui and ollama-rocm in CLI packages.
- Updated desktop packages to include filezilla, audacity, and freecad.
- Expanded essentials with distrobox, dbus, cifs-utils, samba, and kdePackages.ksshaskpass.
- Introduced niri-waybar and niri-session-manager services for improved session management.
- Configured mako notifications with custom settings in the Niri environment.
- Adjusted hyprpaper settings and enabled additional wallpapers. (TODO on niri. Not working ATM)
2026-02-04 11:20:05 +01:00

43 lines
724 B
Nix

{ config, inputs, pkgs, ... }:
{
imports = [
./autostart.nix
../modules/hyprlock
../modules/hyprpaper
../modules/stylix
];
home-manager.sharedModules = [
./home.nix
];
environment.systemPackages = with pkgs;
[
#mako
fuzzel
waybar
xwayland-satellite
];
programs = {
niri = {
enable = true;
};
xwayland.enable = true;
};
#services.xserver.enable = true;
#services.xserver.displayManager.sddm.enable = true;
xdg.portal = { #Needed for waybar
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-wlr ];
config.common.default = "*";
};
#sound.enable = true;
#security.rtkit.enable = true;
}