my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
at isos 10 lines 227 B view raw
1{inputs, ...}: { 2 perSystem = {system, ...}: { 3 legacyPackages = import inputs.nixpkgs { 4 inherit system; 5 config.allowUnfree = true; 6 config.allowUnsupportedSystem = true; 7 overlays = []; 8 }; 9 }; 10}