# Breaking Changes - sops location movod to "system/dev/<dev-name>/sops/sops-conf.nix" - flake devices declaration changes - whole flake update
18 lines
321 B
Nix
18 lines
321 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./minimal.nix
|
|
../stylix.nix
|
|
../auto-mount.nix
|
|
../bluetooth.nix
|
|
../display-manager.nix
|
|
../flatpak.nix
|
|
../obs-studio.nix
|
|
../plymouth.nix
|
|
../polkit.nix
|
|
../security.nix
|
|
../hyprland.nix
|
|
];
|
|
|
|
programs.gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
|
|
}
|