Files
stubbfelnix/programs/installed.nix
2022-09-27 19:57:19 +02:00

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