Add pinentry, rbw, libnotify
This commit is contained in:
parent
9cb6a7982a
commit
1560373dbe
|
@ -69,6 +69,7 @@ XWayland {
|
|||
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
bind = SUPER, Return, exec, wezterm
|
||||
bind = SUPER SHIFT, Return, exec, pkill rofi || rofi -show ssh
|
||||
bind = SUPER, W, exec, pgrep firefox > /dev/null || firefox
|
||||
bind = SUPER, F1, exec, swaylock
|
||||
|
||||
|
|
|
@ -6,18 +6,15 @@
|
|||
icon-theme = config.gtk.iconTheme.name;
|
||||
in {
|
||||
imports = [../gtk.nix];
|
||||
home.packages = [pkgs.rofi-power-menu];
|
||||
home.packages = with pkgs; [rofi-power-menu];
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
location = "center";
|
||||
pass.enable = true;
|
||||
terminal = "wezterm-gui";
|
||||
plugins = with pkgs; [
|
||||
rofi-file-browser
|
||||
rofi-top
|
||||
];
|
||||
plugins = with pkgs; [rofi-file-browser];
|
||||
extraConfig = {
|
||||
modi = "run,drun,ssh,top,file-browser-extended,power-menu:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
|
||||
modi = "run,drun,ssh,file-browser-extended,power-menu:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
|
||||
sort = true;
|
||||
sorting-method = "fzf";
|
||||
matching = "fuzzy";
|
||||
|
@ -30,7 +27,6 @@ in {
|
|||
display-run = " Commands ";
|
||||
display-drun = " Programs ";
|
||||
display-ssh = " SSH ";
|
||||
display-top = " Top ";
|
||||
display-file-browser-extended = " File Browser ";
|
||||
display-power-menu = " Power Menu ";
|
||||
};
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs, tokyonight, ... }: {
|
||||
home.packages = [ pkgs.pinentry ];
|
||||
programs = {
|
||||
bat = {
|
||||
enable = true;
|
||||
|
@ -18,5 +19,6 @@
|
|||
builtins.readFile "${tokyonight}/extras/gitui/tokyonight_night.ron";
|
||||
};
|
||||
ncspot.enable = true;
|
||||
rbw.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@ in {
|
|||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../plasma.nix
|
||||
../hyprland.nix
|
||||
../../services/${hostName}.nix
|
||||
];
|
||||
|
@ -32,7 +31,7 @@ in {
|
|||
'';
|
||||
programs.light.enable = true;
|
||||
users.users.${user} = userConfig;
|
||||
services.xserver.displayManager.defaultSession = "plasmawayland";
|
||||
services.xserver.displayManager.defaultSession = "hyprland";
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
|
|
|
@ -5,6 +5,7 @@ let
|
|||
in {
|
||||
imports = [ ./common.nix ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
libnotify
|
||||
sddm-catppuccin-macchiato
|
||||
bitwarden
|
||||
signal-desktop
|
||||
|
|
Loading…
Reference in a new issue