Compare commits

..

No commits in common. "1fdda2e2da5b75510c9f39ec00417019660c0bbb" and "c555e598b597e5744d000a41b0a7bf40c366b921" have entirely different histories.

4 changed files with 1 additions and 39 deletions

View File

@ -25,7 +25,6 @@
./modules/alacritty.nix
./modules/newsboat.nix
./modules/helix.nix
./modules/tofi.nix
];
# My packages

View File

@ -1,22 +0,0 @@
anchor = top
width = 100%
height = 28
horizontal = true
font-size = 12
prompt-text = "Run: "
font = CaskaydiaCove Nerd Font
history = false
require-match = false
terminal = alacritty
outline-width = 0
border-width = 0
min-input-width = 120
result-spacing = 15
padding-top = 4
padding-bottom = 0
padding-left = 5
padding-right = 5
text-color = #c6d0f5
prompt-color = #e78284
selection-color = #e5c890
background-color = #303446

View File

@ -1,6 +1,6 @@
{ inputs, pkgs, ... }:
{
# Install newsboat
# Install alacritty
home.packages = [
pkgs.newsboat
];

View File

@ -1,15 +0,0 @@
{ inputs, pkgs, ... }:
{
# Install tofi
home.packages = with pkgs; [
tofi
(writeShellScriptBin "tofi-pass" ''
tofi --hide-input true --prompt-text 'Password: ' --require-match false --hidden-character '.' < /dev/null
'')
];
# Setup my config file
home.file = {
".config/tofi/config".source = ./confs/tofi;
};
}