Files
stubbfelnix/programs/installed.nix
stubbfel fc6e443cff update
2023-08-13 14:00:01 +02: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 exa progress tldr htop unstable.docker-compose pkgs.php81 steamPackages.steamcmd
];
imports =
[
./zsh.nix
# ./ledebuild_progs.nix
];
}