devos/configuration.nix

40 lines
1.0 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 08:07:26 +01:00
inherit (builtins) attrNames readDir;
2020-01-02 01:16:38 +01:00
hostname = lib.fileContents /etc/hostname;
host = "/etc/nixos/hosts/${hostname}.nix";
2020-07-31 06:17:28 +02:00
config =
if (builtins.pathExists host) then
[ host ]
else
[ /etc/nixos/hosts/NixOS.nix ];
in
{
2020-06-14 20:30:40 +02:00
imports = (import ./modules/list.nix) ++ [
2020-01-04 06:06:31 +01:00
"${
builtins.fetchTarball
2020-07-31 06:17:28 +02:00
"https://github.com/rycee/home-manager/archive/master.tar.gz"
}/nixos"
/etc/nixos/profiles/core.nix
2020-01-02 01:16:38 +01:00
] ++ config;
networking.hostName = hostname;
nix.nixPath = [
"nixpkgs=${<nixpkgs>}"
"nixos-config=/etc/nixos/configuration.nix"
"nixpkgs-overlays=/etc/nixos/overlays"
];
2020-01-02 00:23:57 +01:00
2020-07-31 06:17:28 +02:00
nixpkgs.overlays =
let
overlays = map
(name: import (./overlays + "/${name}"))
(attrNames (readDir ./overlays));
in
overlays;
}