Personal-use NixOS configuration
at main 22 lines 357 B view raw
1{ 2 flakeRoot, 3 pkgs, 4 pkgs-unstable, 5 ... 6}: 7 8{ 9 imports = [ 10 (flakeRoot + /homes/encode42/common) 11 12 (flakeRoot + /homes/encode42/common/github.nix) 13 (flakeRoot + /homes/encode42/common/direnv.nix) 14 ]; 15 16 home.packages = with pkgs; [ 17 cyanrip 18 19 # Unstable to keep up-to-date with authentication servers 20 pkgs-unstable.makemkv 21 ]; 22}