mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
home.file -> xdg.configFile
This commit is contained in:
parent
e366f02180
commit
4a652c226f
5 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [ alacritty ];
|
||||
home.file.".config/alacritty/alacritty.yml".source = ./alacritty.yml;
|
||||
xdg.configFile."alacritty/alacritty.yml".source = ./alacritty.yml;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
# declaration of awesome wm is in hosts/<name>/default.nix
|
||||
home.file.".config/awesome/rc.lua".source = ./rc.lua;
|
||||
xdg.configFile."awesome/rc.lua".source = ./rc.lua;
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
programs.neovim = {
|
||||
enable = true;
|
||||
# defaultEditor = true; why the hell doesn't this work :(
|
||||
# vimAlias = true;
|
||||
vimAlias = true;
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
nerdtree
|
||||
nerdcommenter
|
||||
|
|
|
@ -1,6 +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;
|
||||
xdg.configFile."vifm/vifmrc".source = ./vifmrc;
|
||||
xdg.configFile."vifm/colors/dracula.vifm".source = ./dracula.vifm;
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "gh" ];
|
||||
plugins = [ "gh" "pass" ];
|
||||
theme = "agnoster";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue