- Create a new Stylix module with wallpaper and font configuration - Integrate Waybar into Niri - Changed Discord application to Vesktop - Enable Waydroid virtualization
48 lines
849 B
Nix
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;
|
|
};
|
|
}
|