diff options
author | Alex Auvolat <alex@adnab.me> | 2023-12-25 20:44:38 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-12-25 20:44:38 +0100 |
commit | 03e3439e8722077d27b67b51a5e3fda4b79e61af (patch) | |
tree | 811602905663e2ab8cabc5d01d5af7befc1e096f /nixos/wmonly.nix | |
parent | 99905fc68eb6075f8375dc5d6c6932458fff43a2 (diff) | |
download | user-config-03e3439e8722077d27b67b51a5e3fda4b79e61af.tar.gz user-config-03e3439e8722077d27b67b51a5e3fda4b79e61af.zip |
refactor and switch kusanagi to wayfire
Diffstat (limited to 'nixos/wmonly.nix')
-rw-r--r-- | nixos/wmonly.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/nixos/wmonly.nix b/nixos/wmonly.nix new file mode 100644 index 0000000..c9bde38 --- /dev/null +++ b/nixos/wmonly.nix @@ -0,0 +1,30 @@ +{ config, lib, pkgs, modulesPath, ... }: +{ + services.udisks2.enable = true; + services.gvfs.enable = true; + + environment.systemPackages = with pkgs; [ + i3lock + brightnessctl + pulseaudio + pavucontrol + networkmanagerapplet + xfce.xfce4-appfinder + xfce.xfce4-taskmanager + + arandr + dmenu + feh + acpi + netsurf.browser + sylpheed + xfe + libreoffice-still + pcmanfm + xfce.ristretto + xarchiver + epdfview + leafpad + geany + ]; +} |