os/configuration.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

# this file is an impure recreation of the flake profile currently deployed
# based on the systems hostname. The purpose is so tools which do not yet have
# flake support (e.g `nixos-option`), can work as expected.
{ lib, ... }:
let
2020-01-06 07:07:26 +00:00
inherit (builtins) attrNames readDir;
nixpkgs = toString (import ./nixpkgs-compat.nix);
2020-01-02 00:16:38 +00:00
hostname = lib.fileContents /etc/hostname;
host = "/etc/nixos/hosts/${hostname}.nix";
2020-07-31 04:17:28 +00:00
config =
if (builtins.pathExists host) then
[ host ]
else
[ /etc/nixos/hosts/NixOS.nix ];
in
{
2020-06-14 18:30:40 +00:00
imports = (import ./modules/list.nix) ++ [
2020-01-04 05:06:31 +00:00
"${
builtins.fetchTarball
"https://github.com/nix-community/home-manager/archive/master.tar.gz"
2020-07-31 04:17:28 +00:00
}/nixos"
2020-12-14 23:54:42 +00:00
/etc/nixos/profiles/core
2020-01-02 00:16:38 +00:00
] ++ config;
networking.hostName = hostname;
nix.nixPath = [
"nixpkgs=${nixpkgs}"
"nixos-config=/etc/nixos/configuration.nix"
"nixpkgs-overlays=/etc/nixos/overlays"
];
2020-01-01 23:23:57 +00:00
2020-07-31 04:17:28 +00:00
nixpkgs.overlays =
let
overlays = map
(name: import (./overlays + "/${name}"))
(attrNames (readDir ./overlays));
in
overlays;
}