mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 09:47:52 +00:00
16 lines
239 B
Nix
16 lines
239 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
{
|
|
imports = [
|
|
./general.nix
|
|
./developer.nix
|
|
./multimedia.nix
|
|
./plasma.nix
|
|
./games.nix
|
|
./browser.nix
|
|
./gnome.nix
|
|
./printing.nix
|
|
./flatpak.nix
|
|
./sddm.nix
|
|
];
|
|
}
|