mirror of
https://github.com/blahai/nyx.git
synced 2025-06-10 00:53:01 -04:00
All this just to get nyx to even build
This commit is contained in:
parent
ed1aafe645
commit
fdfd4e0434
24 changed files with 2272 additions and 0 deletions
5
modules/base/default.nix
Normal file
5
modules/base/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./nix
|
||||
];
|
||||
}
|
5
modules/base/nix/default.nix
Normal file
5
modules/base/nix/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./system.nix
|
||||
];
|
||||
}
|
11
modules/base/nix/system.nix
Normal file
11
modules/base/nix/system.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.modules) mkDefault;
|
||||
in {
|
||||
system = {
|
||||
stateVersion = mkDefault "25.05";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue