Renamed plasma and niri config files to align with "default.nix" directory standard

This commit is contained in:
2026-02-19 11:54:40 +01:00
parent 66ef4b89af
commit e8a125b43f
3 changed files with 4 additions and 4 deletions

42
niri/default.nix Normal file
View File

@ -0,0 +1,42 @@
{ 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;
}