1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-06-05 17:18:47 +02:00

added vifm and moved some stuff

This commit is contained in:
Rouven Seifert 2022-12-19 16:51:39 +01:00
parent f2c61e1976
commit d585030b4d
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 418 additions and 37 deletions
users/rouven/modules/vifm

View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ vifm ];
home.file.".config/vifm/vifmrc".source = ./vifmrc;
home.file.".config/vifm/colors/dracula.vifm".source = ./dracula.vifm;
}