init
This commit is contained in:
63
hosts/laptop/home.nix
Normal file
63
hosts/laptop/home.nix
Normal file
@@ -0,0 +1,63 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
home.enableNixpkgsReleaseCheck = false;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
home.username = "k";
|
||||
home.homeDirectory = "/home/k";
|
||||
home.stateVersion = "23.11";
|
||||
|
||||
home.packages = [
|
||||
pkgs.emacs
|
||||
pkgs.neovim
|
||||
pkgs.firefox
|
||||
pkgs.keepassxc
|
||||
pkgs.plan9port
|
||||
pkgs.syncthing
|
||||
pkgs.thunderbird
|
||||
pkgs.blender
|
||||
pkgs.steam
|
||||
pkgs.discord
|
||||
pkgs.htop
|
||||
pkgs.zip
|
||||
pkgs.spotify
|
||||
|
||||
pkgs.clang-tools
|
||||
|
||||
pkgs.texlive.combined.scheme-full
|
||||
pkgs.ispell
|
||||
|
||||
pkgs.ollama
|
||||
pkgs.logseq
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "k";
|
||||
userEmail = "markers711@gmail.com";
|
||||
};
|
||||
|
||||
programs.starship.enable = true;
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autosuggestion.enable = true;
|
||||
enableCompletion = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
autocd = true;
|
||||
plugins = [
|
||||
{
|
||||
name = "zsh-nix-shell";
|
||||
file = "nix-shell.plugin.zsh";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "chisui";
|
||||
repo = "zsh-nix-shell";
|
||||
rev = "v0.8.0";
|
||||
sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
services.syncthing.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user