home-manager | refactor a bit, added fuzzel
This commit is contained in:
parent
9cffac9351
commit
f2a8ec8606
5 changed files with 42 additions and 9 deletions
|
|
@ -5,15 +5,6 @@
|
|||
./packages-cli.nix
|
||||
./packages-gui.nix
|
||||
./services.nix
|
||||
./mpv.nix
|
||||
./tmux.nix
|
||||
./neovim.nix
|
||||
./terminals.nix
|
||||
./khard.nix
|
||||
./khal.nix
|
||||
./kitty.nix
|
||||
./liquidprompt.nix
|
||||
./newsboat.nix
|
||||
];
|
||||
home = {
|
||||
username = "don";
|
||||
|
|
|
|||
28
home/fuzzel.nix
Normal file
28
home/fuzzel.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
icon-theme = "Papirus-Dark";
|
||||
width = 50;
|
||||
font = "Ubuntu:style=Bold:size=12, Hack:weight=bold:size=12";
|
||||
fields = "name,generic,comment,categories,filename,keywords";
|
||||
prompt = "❯ ";
|
||||
layer = "overlay";
|
||||
};
|
||||
colors = {
|
||||
background = "282a36fa";
|
||||
selection = "3d4474fa";
|
||||
border = "fffffffa";
|
||||
};
|
||||
border = {
|
||||
radius = 20;
|
||||
};
|
||||
dmenu = {
|
||||
exit-immediately-if-empty = true;
|
||||
mode = "index";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,5 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./tmux.nix
|
||||
./neovim.nix
|
||||
./khard.nix
|
||||
./khal.nix
|
||||
./liquidprompt.nix
|
||||
./newsboat.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
bc
|
||||
bitwarden-cli
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./kitty.nix
|
||||
./mpv.nix
|
||||
./fuzzel.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
#sublime-music
|
||||
authy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue