rework lib and some general changes
This commit is contained in:
parent
48b7ab9fab
commit
af804c63f8
11 changed files with 152 additions and 121 deletions
17
default.nix
17
default.nix
|
@ -1,11 +1,13 @@
|
||||||
{ config, inputs, lib, pkgs, ... }:
|
{ config, inputs, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) filterAttrs _;
|
inherit (builtins) toString;
|
||||||
|
inherit (lib.modules) mkDefault;
|
||||||
|
inherit (lib.my) mapModulesRec';
|
||||||
in {
|
in {
|
||||||
imports =
|
imports =
|
||||||
[ inputs.home-manager.nixosModules.home-manager ]
|
[ inputs.home-manager.nixosModules.home-manager ]
|
||||||
++ _.mapModulesRec' ./modules import;
|
++ (mapModulesRec' (toString ./modules) import);
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -25,14 +27,15 @@ in {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
unrar unzip
|
unrar unzip
|
||||||
curl wget
|
curl wget
|
||||||
# hello! if you remove this, good luck
|
# nix does not work without git.
|
||||||
# ever rebuilding your system using flakes!
|
# do not remove this.
|
||||||
|
# nix is awesome
|
||||||
git
|
git
|
||||||
];
|
];
|
||||||
|
|
||||||
time.timeZone = lib.mkDefault "America/Los_Angeles";
|
time.timeZone = mkDefault "America/Los_Angeles";
|
||||||
|
|
||||||
i18n.defaultLocale = lib.mkDefault "en_US.UTF-8";
|
i18n.defaultLocale = mkDefault "en_US.UTF-8";
|
||||||
|
|
||||||
system.stateVersion = lib.mkDefault "23.11";
|
system.stateVersion = mkDefault "23.11";
|
||||||
}
|
}
|
||||||
|
|
22
flake.lock
generated
22
flake.lock
generated
|
@ -2,7 +2,9 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"home-manager": {
|
"home-manager": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1705535278,
|
"lastModified": 1705535278,
|
||||||
|
@ -19,22 +21,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
|
||||||
"lastModified": 1705316053,
|
|
||||||
"narHash": "sha256-J2Ey5mPFT8gdfL2XC0JTZvKaBw/b2pnyudEXFvl+dQM=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "c3e128f3c0ecc1fb04aef9f72b3dcc2f6cecf370",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixos-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs_2": {
|
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1705496572,
|
"lastModified": 1705496572,
|
||||||
"narHash": "sha256-rPIe9G5EBLXdBdn9ilGc0nq082lzQd0xGGe092R/5QE=",
|
"narHash": "sha256-rPIe9G5EBLXdBdn9ilGc0nq082lzQd0xGGe092R/5QE=",
|
||||||
|
@ -53,7 +39,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"nixpkgs": "nixpkgs_2"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
43
flake.nix
43
flake.nix
|
@ -5,29 +5,44 @@
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ { self, nixpkgs, ... }:
|
outputs = inputs @ { self, nixpkgs, ... }:
|
||||||
let
|
let
|
||||||
|
inherit (lib.my) mapModules mapModulesRec mkHost;
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
|
|
||||||
lib = import ./lib { inherit pkgs inputs; lib = nixpkgs.lib; };
|
mkPkgs = pkgs: extraOverlays:
|
||||||
inherit (lib._) mapModules mapModulesRec mkHost;
|
import pkgs {
|
||||||
|
inherit system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
config.allowAliases = false;
|
||||||
|
overlays = extraOverlays ++ (lib.attrValues self.overlays);
|
||||||
|
};
|
||||||
|
pkgs = mkPkgs nixpkgs [ self.overlays.default ];
|
||||||
|
|
||||||
mkPkgs = pkgs: overlays: import pkgs {
|
lib = nixpkgs.lib.extend (final: prev: {
|
||||||
inherit system;
|
my = import ./lib {
|
||||||
config.allowUnfree = true;
|
inherit pkgs inputs;
|
||||||
overlays = overlays ++ (lib.attrValues self.overlays);
|
lib = final;
|
||||||
};
|
};
|
||||||
|
});
|
||||||
pkgs = mkPkgs nixpkgs [ self.overlay ];
|
|
||||||
in {
|
in {
|
||||||
|
lib = lib.my;
|
||||||
|
|
||||||
|
overlays =
|
||||||
|
(mapModules ./overlays import)
|
||||||
|
// {
|
||||||
|
default = final: prev: {
|
||||||
|
my = self.packages.${system};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
packages."${system}" = mapModules ./packages (p: pkgs.callPackage p {});
|
packages."${system}" = mapModules ./packages (p: pkgs.callPackage p {});
|
||||||
overlay = final: prev: {
|
|
||||||
_ = self.packages."${system}";
|
nixosModules = mapModulesRec ./modules import;
|
||||||
};
|
|
||||||
overlays = mapModules ./overlays import;
|
|
||||||
nixosModules = (mapModulesRec ./modules import);
|
|
||||||
nixosConfigurations = mapModules ./hosts (host: mkHost host { inherit system; });
|
nixosConfigurations = mapModules ./hosts (host: mkHost host { inherit system; });
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
[
|
|
||||||
# reidlab
|
|
||||||
{ hostname = "reidlab@rei-pc";
|
|
||||||
ssh = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICmwWuwS+a1GzYFSNOkgk/zF5bolXqat1RP5FXJv+vto reidlab@rei-pc";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
hostname = "reidlab@rei-phone";
|
|
||||||
ssh = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKC12NkyZAFNDHfq1ECh4uAgM4mpKfsQnL3XF/ZzSyCJ reidlab@rei-phone";
|
|
||||||
}
|
|
||||||
]
|
|
|
@ -17,9 +17,9 @@ in {
|
||||||
conf = {
|
conf = {
|
||||||
packages = with pkgs; [ bat tree micro duf ];
|
packages = with pkgs; [ bat tree micro duf ];
|
||||||
extraGroups = [ "wheel" "dotfiles" ];
|
extraGroups = [ "wheel" "dotfiles" ];
|
||||||
openssh.authorizedKeys.keys = fetchSSHKeys [
|
openssh.authorizedKeys.keys = [
|
||||||
"reidlab@rei-pc"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICmwWuwS+a1GzYFSNOkgk/zF5bolXqat1RP5FXJv+vto reidlab@rei-pc"
|
||||||
"reidlab@rei-phone"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKC12NkyZAFNDHfq1ECh4uAgM4mpKfsQnL3XF/ZzSyCJ reidlab@rei-phone"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
25
lib/attrs.nix
Normal file
25
lib/attrs.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{lib, ...}: let
|
||||||
|
inherit (lib.lists) any count;
|
||||||
|
inherit (lib.attrsets) filterAttrs listToAttrs mapAttrs' mapAttrsToList;
|
||||||
|
in rec {
|
||||||
|
# attrsToList
|
||||||
|
attrsToList = attrs:
|
||||||
|
mapAttrsToList (name: value: {inherit name value;}) attrs;
|
||||||
|
|
||||||
|
# mapFilterAttrs ::
|
||||||
|
# (name -> value -> bool)
|
||||||
|
# (name -> value -> { name = any; value = any; })
|
||||||
|
# attrs
|
||||||
|
mapFilterAttrs = pred: f: attrs: filterAttrs pred (mapAttrs' f attrs);
|
||||||
|
|
||||||
|
# Generate an attribute set by mapping a function over a list of values.
|
||||||
|
genAttrs' = values: f: listToAttrs (map f values);
|
||||||
|
|
||||||
|
# anyAttrs :: (name -> value -> bool) attrs
|
||||||
|
anyAttrs = pred: attrs:
|
||||||
|
any (attr: pred attr.name attr.value) (attrsToList attrs);
|
||||||
|
|
||||||
|
# countAttrs :: (name -> value -> bool) attrs
|
||||||
|
countAttrs = pred: attrs:
|
||||||
|
count (attr: pred attr.name attr.value) (attrsToList attrs);
|
||||||
|
}
|
|
@ -1,17 +1,20 @@
|
||||||
{ inputs, lib, pkgs, ... }:
|
{ inputs, lib, pkgs, ... }:
|
||||||
|
|
||||||
lib.extend (self: super:
|
|
||||||
let
|
let
|
||||||
inherit (lib) attrValues foldr;
|
inherit (lib.attrsets) attrValues;
|
||||||
|
inherit (lib.fixedPoints) makeExtensible;
|
||||||
|
inherit (lib.lists) foldr;
|
||||||
inherit (modules) mapModules;
|
inherit (modules) mapModules;
|
||||||
inherit (helpers) getSSH;
|
|
||||||
|
|
||||||
modules = import ./modules.nix { inherit lib; };
|
modules = import ./modules.nix {
|
||||||
helpers = import ./helpers.nix { inherit lib; };
|
inherit lib;
|
||||||
in {
|
self.attrs = import ./attrs.nix {
|
||||||
_ = foldr (a: b: a // b) {} (attrValues (mapModules ./. (file: import file {
|
inherit lib;
|
||||||
inherit pkgs inputs;
|
self = {};
|
||||||
lib = self;
|
};
|
||||||
})));
|
};
|
||||||
}
|
mylib =
|
||||||
)
|
makeExtensible (self:
|
||||||
|
mapModules ./. (file: import file {inherit self lib pkgs inputs;}));
|
||||||
|
in
|
||||||
|
mylib.extend (self: super: foldr (a: b: a // b) {} (attrValues super))
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{ lib, ... }:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
rec {
|
|
||||||
indexFrom = origin: name: item: list: foldr
|
|
||||||
(h: t:
|
|
||||||
if h.${origin} == name && hasAttr item h
|
|
||||||
then h.${item}
|
|
||||||
else t)
|
|
||||||
(error ''
|
|
||||||
No item at the origin point ${origin} with element ${name} found.
|
|
||||||
Please make sure that the item with that origin exists, and,
|
|
||||||
failing that, that it also has the requested item defined.
|
|
||||||
'')
|
|
||||||
list;
|
|
||||||
|
|
||||||
getSSH = name: keys: indexFrom "hostname" name "ssh" keys;
|
|
||||||
}
|
|
|
@ -1,27 +1,43 @@
|
||||||
{ lib, ... }:
|
{
|
||||||
|
lib,
|
||||||
let
|
self,
|
||||||
inherit (builtins) attrValues readDir pathExists;
|
...
|
||||||
inherit (lib) id filterAttrs hasPrefix hasSuffix nameValuePair removeSuffix mapAttrs' trace fix fold isAttrs;
|
}: let
|
||||||
|
inherit (builtins) attrValues readDir pathExists concatLists;
|
||||||
|
inherit (lib.attrsets) mapAttrsToList filterAttrs nameValuePair;
|
||||||
|
inherit (lib.strings) hasPrefix hasSuffix removeSuffix;
|
||||||
|
inherit (lib.trivial) id;
|
||||||
|
inherit (self.attrs) mapFilterAttrs;
|
||||||
in rec {
|
in rec {
|
||||||
mapModules' = dir: fn: dirfn:
|
mapModules = dir: fn:
|
||||||
filterAttrs
|
mapFilterAttrs (n: v: v != null && !(hasPrefix "_" n)) (n: v: let
|
||||||
(name: type: type != null && !(hasPrefix "_" name))
|
path = "${toString dir}/${n}";
|
||||||
(mapAttrs'
|
in
|
||||||
(name: type:
|
if v == "directory" && pathExists "${path}/default.nix"
|
||||||
let path = "${toString dir}/${name}"; in
|
then nameValuePair n (fn path)
|
||||||
if type == "directory"
|
else if v == "regular" && n != "default.nix" && hasSuffix ".nix" n
|
||||||
then nameValuePair name (dirfn path)
|
then nameValuePair (removeSuffix ".nix" n) (fn path)
|
||||||
else if
|
else nameValuePair "" null) (readDir dir);
|
||||||
type == "regular" &&
|
|
||||||
name != "default.nix" &&
|
|
||||||
hasSuffix ".nix" name
|
|
||||||
then nameValuePair (removeSuffix ".nix" name) (fn path)
|
|
||||||
else nameValuePair "" null
|
|
||||||
)
|
|
||||||
(readDir dir));
|
|
||||||
|
|
||||||
mapModules = dir: fn: mapModules' dir fn (path: if pathExists "${path}/default.nix" then fn path else null);
|
mapModules' = dir: fn: attrValues (mapModules dir fn);
|
||||||
mapModulesRec = dir: fn: mapModules' dir fn (path: mapModulesRec path fn);
|
|
||||||
mapModulesRec' = dir: fn: fix (f: attrs: fold (x: xs: (if isAttrs x then f x else [x]) ++ xs) [] (attrValues attrs)) (mapModulesRec dir fn);
|
mapModulesRec = dir: fn:
|
||||||
|
mapFilterAttrs (n: v: v != null && !(hasPrefix "_" n)) (n: v: let
|
||||||
|
path = "${toString dir}/${n}";
|
||||||
|
in
|
||||||
|
if v == "directory"
|
||||||
|
then nameValuePair n (mapModulesRec path fn)
|
||||||
|
else if v == "regular" && n != "default.nix" && hasSuffix ".nix" n
|
||||||
|
then nameValuePair (removeSuffix ".nix" n) (fn path)
|
||||||
|
else nameValuePair "" null) (readDir dir);
|
||||||
|
|
||||||
|
mapModulesRec' = dir: fn: let
|
||||||
|
dirs =
|
||||||
|
mapAttrsToList (k: _: "${dir}/${k}")
|
||||||
|
(filterAttrs (n: v: v == "directory" && !(hasPrefix "_" n))
|
||||||
|
(readDir dir));
|
||||||
|
files = attrValues (mapModules dir id);
|
||||||
|
paths = files ++ concatLists (map (d: mapModulesRec' d id) dirs);
|
||||||
|
in
|
||||||
|
map fn paths;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +1,35 @@
|
||||||
{ inputs, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
{
|
{
|
||||||
mkHost = path: attrs@{ system, ... }:
|
inputs,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
self,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (inputs.nixpkgs.lib) nixosSystem;
|
||||||
|
inherit (builtins) baseNameOf elem;
|
||||||
|
inherit (lib.attrsets) filterAttrs;
|
||||||
|
inherit (lib.modules) mkDefault;
|
||||||
|
inherit (lib.strings) removeSuffix;
|
||||||
|
inherit (self.modules) mapModules;
|
||||||
|
in rec {
|
||||||
|
mkHost = path: attrs @ {system ? "aarch64-linux", ...}:
|
||||||
nixosSystem {
|
nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
specialArgs = { inherit lib inputs system; };
|
|
||||||
|
specialArgs = {inherit lib inputs system;};
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
nixpkgs.pkgs = pkgs;
|
nixpkgs.pkgs = pkgs;
|
||||||
networking.hostName = mkDefault (removeSuffix ".nix" (baseNameOf path));
|
networking.hostName =
|
||||||
|
mkDefault (removeSuffix ".nix" (baseNameOf path));
|
||||||
}
|
}
|
||||||
(filterAttrs (n: v: !elem n [ "system" ]) attrs)
|
(filterAttrs (n: v: !elem n ["system"]) attrs)
|
||||||
|
../. # /default.nix
|
||||||
../.
|
|
||||||
|
|
||||||
(import path)
|
(import path)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mapHosts = dir: attrs @ {system ? system, ...}:
|
||||||
|
mapModules dir (hostPath: mkHost hostPath attrs);
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,8 +18,5 @@ before committing, please run `nix flake check` and make sure everything is ok
|
||||||
|
|
||||||
## todo
|
## todo
|
||||||
|
|
||||||
- analytics using matomo
|
- remove the lua static stuff from nginx
|
||||||
- php support in staticsites
|
- add a helper for per-host architecture picking, atm it is hardcoded to `aarch64`
|
||||||
- no more luapackagepath. please stop.
|
|
||||||
- not sure if this is cloudflare doing this or our acme config, but accessing invalid subdomains returns a dumb ssl error
|
|
||||||
- this is not related to the flake but it is to the site. transfer from namecheap to porkbun plz
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue