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