Files
NixOS/niri/niri.nix
Cookiez b0b59b2413 - Changed jetbrains ides to jetbrains toolbox to get more up to date versions
- Create a new Stylix module with wallpaper and font configuration
- Integrate Waybar into Niri
- Changed Discord application  to Vesktop
- Enable Waydroid virtualization
2025-12-08 10:50:50 +01:00

48 lines
849 B
Nix

{ config, inputs, pkgs, ... }:
{
imports = [
# ./autostart.nix
../modules/noctalia
../modules/hyprlock
../modules/hyprpaper
../modules/stylix
];
home-manager.sharedModules = [
./home.nix
];
environment.systemPackages = with pkgs;
[
mako
fuzzel
waybar
];
# programs = {
# niri = {
# 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;
services.pipewire = {
enable = true;
alsa.enable = true;
#alsa.support3Bbit = true;
pulse.enable = true;
# jack.enable = true;
};
}