1
0
Fork 0
nixconf/unstable.nix

10 lines
198 B
Nix
Raw Permalink Normal View History

2024-12-31 21:59:24 -07:00
{ config, pkgs, ...}:
let
baseconfig = { allowUnfree = true; };
2025-01-04 20:39:16 -07:00
pkgs = import <nixos-unstable> { config = baseconfig; };
2024-12-31 21:59:24 -07:00
in {
environment.systemPackages = with pkgs; [
2025-01-04 20:39:16 -07:00
pkgs.ghostty
2024-12-31 21:59:24 -07:00
];
}