Files
NixOS/niri/niri.nix
Cookiez a8a718a5ce - Removed the Stylix configuration from configuration.nix and created a new stylix.nix file for better organization.
- Enhanced ncli.nix to include generation information during NixOS rebuild and update commands.
- Updated niri.nix to include the new stylix module.
- Adjusted aliases to ensure correct path referencing.
- And some minor changes
2025-11-26 11:14:22 +01:00

47 lines
780 B
Nix

{ config, inputs, pkgs, ... }:
{
imports = [
# ./autostart.nix
../modules/noctalia
../modules/hyprlock
../modules/hyprpaper
../modules/stylix.nix
];
home-manager.sharedModules = [
./home.nix
];
environment.systemPackages = with pkgs;
[
mako
waybar
fuzzel
];
# programs = {
# niri = {
# enable = true;
# };
# };
#services.xserver.enable = true;
#services.xserver.displayManager.sddm.enable = true;
# xdg.portal = {
# enable = true;
# extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
# };
#sound.enable = true;
#security.rtkit.enable = true;
#services.pipewire = {
# enable = true;
# alsa.enable = true;
# #alsa.support3Bbit = true;
# pulse.enable = true;
# jack.enable = true;
#};
}