14 lines
177 B
Nix
14 lines
177 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
defaultPkgs = with pkgs; [
|
|
lorri
|
|
p7zip
|
|
];
|
|
in
|
|
{
|
|
imports = [ (import ./universal.nix) ];
|
|
|
|
services.lorri.enable = true;
|
|
xdg.enable = true;
|
|
}
|