blob: 05c3fbd6606e345bc1b1bb103a2c567aeefe94e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [
./wmonly.nix
];
environment.systemPackages = with pkgs; [
# ---- wayfire ----
wayfire-with-plugins
wayfirePlugins.wcm
wayfirePlugins.wf-shell
];
}
|