clean up laptop config

This commit is contained in:
k
2024-09-07 11:30:41 -04:00
parent 17e64562dd
commit cf4133344f
2 changed files with 135 additions and 156 deletions

View File

@@ -1,46 +1,47 @@
{ config, pkgs, inputs, ... }:
{
home.enableNixpkgsReleaseCheck = false;
nixpkgs.config.allowUnfree = true;
home.username = "k";
home.homeDirectory = "/home/k";
home.stateVersion = "23.11";
home = {
username = "k";
homeDirectory = "/home/k";
stateVersion = "23.11";
enableNixpkgsReleaseCheck = false;
packages = [
pkgs.nerdfonts
pkgs.firefox
pkgs.keepassxc
pkgs.syncthing
pkgs.thunderbird
pkgs.blender
pkgs.vesktop
pkgs.btop
pkgs.zip
pkgs.spotify
pkgs.distrobox
home.packages = [
pkgs.nerdfonts
pkgs.firefox
pkgs.keepassxc
pkgs.syncthing
pkgs.thunderbird
pkgs.blender
pkgs.vesktop
pkgs.btop
pkgs.zip
pkgs.spotify
pkgs.distrobox
pkgs.modrinth-app
pkgs.emacs
pkgs.direnv
];
programs.git = {
enable = true;
userName = "k";
userEmail = "markers711@gmail.com";
pkgs.modrinth-app
pkgs.emacs
pkgs.direnv
];
};
programs.starship.enable = true;
programs.zsh = {
enable = true;
autosuggestion.enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
autocd = true;
plugins = [
{
programs = {
git = {
enable = true;
userName = "k";
userEmail = "markers711@gmail.com";
};
starship.enable = true;
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 {
@@ -49,9 +50,9 @@
rev = "v0.8.0";
sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7";
};
}
];
}];
};
};
services.syncthing.enable = true;
services = { syncthing.enable = true; };
}