Files
stubbfelnix/programs/installed.nix
stubbfel 0b86fda79a 23.11
2023-12-06 23:06:29 +01:00

18 lines
371 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.php81 steamPackages.steamcmd
];
imports =
[
./zsh.nix
# ./ledebuild_progs.nix
];
}