my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

default.nix 147B

3 yıl önce
12345678910
  1. { pkgs, ... }: {
  2. nix = {
  3. package = pkgs.nixUnstable;
  4. extraOptions = ''
  5. experimental-features = nix-command flakes
  6. '';
  7. };
  8. }