Skip to content

Commit

Permalink
emi's random river experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
Aproxia-dev committed Oct 27, 2023
1 parent b826ef2 commit e99ed26
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions hosts/twinkpad/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
package = pkgs.awesome-git;
};
sway.enable = true;
river.enable = true;
};
hardware.laptop.enable = true;
system = {
Expand Down
2 changes: 0 additions & 2 deletions modules/desktop/awesome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ in {
};

config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ luajit ];

services.xserver.windowManager.awesome = {
enable = true;
package = cfg.package;
Expand Down
15 changes: 15 additions & 0 deletions modules/desktop/river.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{ config, pkgs, lib, inputs, system, ... }:

with builtins;
with lib;
let cfg = config.modules.desktop.river;
in {
options.modules.desktop.river = {
enable = mkEnableOption "river";
};

config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ rivercarro ];
programs.river.enable = true;
};
}
4 changes: 3 additions & 1 deletion users/apro/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in {
home = {
packages = (with pkgs; [
(pcmanfm.override { withGtk3 = true; })
rofi
rofi-wayland
scrot
picom-dccsillag
ranger
Expand Down Expand Up @@ -104,6 +104,8 @@ in {
picom.source = ./config/picom;
rofi.source = ./config/rofi;
"libinput-gestures.conf".source = ./config/libinput-gestures.conf;

"mimeapps.list".force = true;
};
};

Expand Down

0 comments on commit e99ed26

Please sign in to comment.