Kieran's opinionated (and probably slightly dumb) nix config

chore: Update nixos/configuration.nix to remove unused imports and update user configuration for 'kierank'

Changed files
-14
nixos
-14
nixos/configuration.nix
···
];
nixpkgs = {
-
# You can add overlays here
-
overlays = [
-
# If you want to use overlays exported from other flakes:
-
# neovim-nightly-overlay.overlays.default
-
-
# Or define it inline, for example:
-
# (final: prev: {
-
# hi = final.hello.overrideAttrs (oldAttrs: {
-
# patches = [ ./change-hello-to-hi.patch ];
-
# });
-
# })
-
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
···
registry = lib.mapAttrs (_: flake: {inherit flake;}) flakeInputs;
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
};
-
-
# FIXME: Add the rest of your current configuration
networking.hostName = "moonlark";