parent
9da63be993
commit
3fb14017dd
1 changed files with 7 additions and 1 deletions
8
home.nix
8
home.nix
|
@ -12,12 +12,12 @@ in
|
||||||
keepassxc
|
keepassxc
|
||||||
nil
|
nil
|
||||||
moonlight-qt
|
moonlight-qt
|
||||||
cowsay
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
home-manager.enable = true;
|
home-manager.enable = true;
|
||||||
|
|
||||||
neovim = {
|
neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
|
@ -33,6 +33,7 @@ in
|
||||||
];
|
];
|
||||||
extraLuaConfig = builtins.readFile ./neovim.lua;
|
extraLuaConfig = builtins.readFile ./neovim.lua;
|
||||||
};
|
};
|
||||||
|
|
||||||
alacritty = {
|
alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = (import ./alacritty.nix);
|
settings = (import ./alacritty.nix);
|
||||||
|
@ -82,6 +83,11 @@ in
|
||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fzf = {
|
||||||
|
enable = true;
|
||||||
|
enableBashIntegration = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Let home-manager manage the X session
|
# Let home-manager manage the X session
|
||||||
|
|
Reference in a new issue