From 3f199f8f4dd9e28127f0ad8d0f3511c6cd185d80 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 26 Oct 2021 15:28:56 -0400 Subject: [PATCH] setup basics of rofi --- profiles/graphical/qtile.nix | 1 - users/infinidoge/default.nix | 2 ++ users/profiles/rofi.nix | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 users/profiles/rofi.nix diff --git a/profiles/graphical/qtile.nix b/profiles/graphical/qtile.nix index d89ccd6..df9f6d1 100644 --- a/profiles/graphical/qtile.nix +++ b/profiles/graphical/qtile.nix @@ -5,7 +5,6 @@ environment.systemPackages = with pkgs; [ xsecurelock - rofi ]; fonts.fonts = with pkgs; [ diff --git a/users/infinidoge/default.nix b/users/infinidoge/default.nix index 4525a21..d994fbb 100644 --- a/users/infinidoge/default.nix +++ b/users/infinidoge/default.nix @@ -14,6 +14,8 @@ gaming themeing + + rofi ]) ]; diff --git a/users/profiles/rofi.nix b/users/profiles/rofi.nix new file mode 100644 index 0000000..775d793 --- /dev/null +++ b/users/profiles/rofi.nix @@ -0,0 +1,19 @@ +{ pkgs, ... }: { + programs.rofi = { + enable = true; + extraConfig = { + modi = builtins.concatStringsSep "," [ + "window" + "run" + "ssh" + "windowcd" + "drun" + "combi" + "keys" + ]; + }; + plugins = with pkgs; [ ]; + pass.enable = true; + theme = "Adapta-Nokto"; + }; +}