Files
stubbfelnix/programs/installed.nix
2025-06-15 20:49:22 +02:00

18 lines
363 B
Nix

{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
wget curl vim nano zsh fzf tmux git eza progress tldr htop unstable.docker-compose pkgs.php83 steamcmd helix
];
imports =
[
./zsh.nix
# ./ledebuild_progs.nix
];
}