mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 01:55:13 -05:00
18 lines
396 B
Nix
18 lines
396 B
Nix
![]() |
{ lib, ... }:
|
||
|
let
|
||
|
configPath = ./config;
|
||
|
|
||
|
ceresImports =
|
||
|
let
|
||
|
files = builtins.attrNames (builtins.readDir configPath);
|
||
|
in
|
||
|
map (name: configPath + "/${name}") (
|
||
|
builtins.filter (name: builtins.match ".*\\.nix$" name != null) files
|
||
|
);
|
||
|
in
|
||
|
{
|
||
|
imports = ceresImports;
|
||
|
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
|
||
|
system.stateVersion = lib.mkForce "24.05";
|
||
|
}
|