mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
Allow both desktops to exist at the same time. Add "plasma6" environment option.
16 lines
235 B
Nix
16 lines
235 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
{
|
|
imports = [
|
|
./general.nix
|
|
./developer.nix
|
|
./multimedia.nix
|
|
./plasma
|
|
./games.nix
|
|
./browser.nix
|
|
./gnome.nix
|
|
./printing.nix
|
|
./flatpak.nix
|
|
./sddm.nix
|
|
];
|
|
}
|