Personal-use NixOS configuration
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}