update homemanager settings
This commit is contained in:
parent
b892f80cff
commit
486836fae6
3 changed files with 96 additions and 0 deletions
24
homes/x86_64-linux/cholli@workvm/default.nix.bak
Normal file
24
homes/x86_64-linux/cholli@workvm/default.nix.bak
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
# User information gathered by Snowfall Lib is available.
|
||||
let
|
||||
name = config.snowfallorg.user.name;
|
||||
home = config.snowfallorg.user.home.directory;
|
||||
in {
|
||||
home = {
|
||||
packages = with pkgs; [neovim];
|
||||
|
||||
sessionVariables = {EDITOR = "nvim";};
|
||||
|
||||
shellAliases = {
|
||||
vim = "nvim";
|
||||
vimdiff = "nvim -d";
|
||||
};
|
||||
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue