18 lines
315 B
Nix
Executable file
18 lines
315 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./minimal.nix
|
|
../stylix.nix
|
|
../auto-mount.nix
|
|
../bluetooth.nix
|
|
../display-manager.nix
|
|
../obs-studio.nix
|
|
../plymouth.nix
|
|
../polkit.nix
|
|
../hyprland.nix
|
|
../niri.nix
|
|
../mango.nix
|
|
];
|
|
|
|
programs.gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
|
|
}
|