This commit is contained in:
k
2024-05-08 21:48:33 -04:00
commit 12a445c435
12 changed files with 903 additions and 0 deletions

41
hosts/tablet/home.nix Normal file
View File

@@ -0,0 +1,41 @@
{ config, pkgs, inputs, ... }:
{
home.enableNixpkgsReleaseCheck = false;
nixpkgs.config.allowUnfree = true;
home.username = "k";
home.homeDirectory = "/home/k";
home.stateVersion = "23.11";
home.packages = [
pkgs.firefox
pkgs.steam
pkgs.discord
pkgs.htop
pkgs.spotify
pkgs.jellyfin-media-player
pkgs.keepassxc
];
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";
};
}
];
};
}