mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
15 lines
247 B
Nix
15 lines
247 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./../../modules/core
|
|
];
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"jitsi-meet-1.0.8043"
|
|
"olm-3.2.16"
|
|
];
|
|
|
|
liv.desktop.enable = true;
|
|
liv.gui.enable = true;
|
|
}
|