Initial commit of flake-based NixOS config for the whole haus
This commit is contained in:
61
hosts/puter/packages.nix
Normal file
61
hosts/puter/packages.nix
Normal file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
users.users.user = {
|
||||
isNormalUser = true;
|
||||
description = "user";
|
||||
extraGroups = ["networkmanager" "wheel" "video" "libvirtd"];
|
||||
nixpkgs.config = {chromium = {enableWideVine = true;};};
|
||||
packages = with pkgs; [
|
||||
# stuff needed by neovim
|
||||
fzf
|
||||
lazygit
|
||||
tree-sitter
|
||||
neovim
|
||||
mcfly
|
||||
luajitPackages.luarocks-nix
|
||||
|
||||
# Dev stuff, most of it might be replaced by devenvs later on
|
||||
ghostty
|
||||
tealdeer
|
||||
vscodium
|
||||
gcc
|
||||
python
|
||||
alejandra
|
||||
starship
|
||||
devenv
|
||||
nodejs
|
||||
mermaid-cli
|
||||
rustup
|
||||
delta
|
||||
just
|
||||
kondo
|
||||
|
||||
# Productivity apps
|
||||
obsidian
|
||||
onlyoffice-desktopeditors
|
||||
keepassxc
|
||||
evolution
|
||||
signal-desktop
|
||||
anki-bin
|
||||
pomodoro-gtk
|
||||
ticker
|
||||
newsboat
|
||||
|
||||
# web browsers
|
||||
ungoogled-chromium
|
||||
tor-browser-bundle-bin
|
||||
transmission_4-gtk
|
||||
|
||||
# multimedia
|
||||
vlc
|
||||
mpv
|
||||
yt-dlp
|
||||
freetube
|
||||
];
|
||||
};
|
||||
#ciscoPacketTracer8
|
||||
#parallel-disk-usage
|
||||
}
|
||||
Reference in New Issue
Block a user