39 lines
804 B
Nix
39 lines
804 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "steven";
|
|
home.homeDirectory = "/home/steven";
|
|
home.stateVersion = "25.11"; # Please read the comment before changing.
|
|
home.packages = [
|
|
];
|
|
home.file = {
|
|
"hmhello.txt".text = ''
|
|
hello'';
|
|
};
|
|
home.sessionVariables = {
|
|
QT_QPA_PLATFORMTHEME = "gtk3";
|
|
PATH = "$PATH:/home/steven/.local/share/JetBrains/Toolbox/scripts/";
|
|
};
|
|
programs = {
|
|
home-manager.enable = true;
|
|
fish.enable = true;
|
|
neovim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
plugins = with pkgs.vimPlugins; [
|
|
oil-nvim
|
|
nvim-colorizer-lua
|
|
nvim-treesitter
|
|
mini-nvim
|
|
plenary-nvim
|
|
telescope-nvim
|
|
gitsigns-nvim
|
|
vim-airline
|
|
nvim-web-devicons
|
|
vim-startify
|
|
];
|
|
extraLuaConfig = builtins.readFile ./neovim/init.lua;
|
|
};
|
|
};
|
|
}
|