Compare commits

...

13 Commits

Author SHA1 Message Date
soraefir 887634421c Update Valinor and vscodium 2026-06-26 19:48:20 +02:00
soraefir 9514a3006c move system to build it 2026-06-21 23:30:56 +02:00
soraefir 5c61353575 remove soft if not needed 2026-06-21 23:23:40 +02:00
soraefir 0f3b542ae5 fix build 2026-06-21 23:17:49 +02:00
soraefir 6366d9b313 improve size and swap for gateway 2026-06-21 23:09:33 +02:00
soraefir 473b290258 Reduce build size via config restriction 2026-06-21 22:51:54 +02:00
soraefir 798c222bd6 fix typo 2026-06-21 19:00:05 +02:00
soraefir 546b9cb09d cleanup 2026-06-21 18:38:02 +02:00
soraefir c357d13b21 container fixes 2026-06-21 17:57:12 +02:00
soraefir a34135d5a7 add drawio & robots to sandbox 2026-06-21 17:13:04 +02:00
soraefir 878b660bf2 small refactor 2026-06-20 13:07:06 +02:00
soraefir e5a75cb3b7 Multi system and pkgs cleanup 2026-06-20 12:50:42 +02:00
soraefir 8e21f3dae8 Cleanup 2026-06-20 10:54:17 +02:00
42 changed files with 279 additions and 233 deletions
+24 -14
View File
@@ -39,25 +39,35 @@
outputs = inputs:
let
lib = inputs.nixpkgs.lib;
gen = import ./generator.nix { inherit inputs; };
linuxSystems = [ "x86_64-linux" "aarch64-linux" ];
supportedSystems = linuxSystems ++ [ "x86_64-darwin" "aarch64-darwin" ];
overlays = import ./overlays { inherit inputs; };
mkPkgs = system:
import inputs.nixpkgs {
inherit system;
inherit overlays;
config.allowUnfree = true;
};
gen = import ./generator.nix { inherit inputs mkPkgs supportedSystems; };
systemsDir = ./systems;
isIgnoredSystemDir = name: lib.hasPrefix "_" name || lib.hasPrefix "." name;
systemNames = lib.attrNames (lib.filterAttrs
(name: type:
systemNames = lib.attrNames (
lib.filterAttrs (
name: type:
type == "directory"
&& !isIgnoredSystemDir name
&& builtins.pathExists (systemsDir + "/${name}/cfg.nix"))
(builtins.readDir systemsDir));
&& builtins.pathExists (systemsDir + "/${name}/cfg.nix")
) (builtins.readDir systemsDir)
);
hostsByType = systemType:
lib.filter
(host: (import (systemsDir + "/${host}/cfg.nix")).syscfg.type == systemType)
systemNames;
lib.filter (host: ((import (systemsDir + "/${host}/cfg.nix")).syscfg.type or "nixos") == systemType) systemNames;
generateHosts = systemType:
lib.genAttrs
(hostsByType systemType)
(host: gen.generate { inherit host; });
lib.genAttrs (hostsByType systemType) (host: gen.generate { inherit host; });
in {
devShells = import ./shells { inherit inputs; };
devShells = import ./shells {
inherit inputs mkPkgs;
systems = linuxSystems;
};
nixosConfigurations = generateHosts "nixos";
darwinConfigurations = generateHosts "macos";
@@ -76,8 +86,8 @@
# diyu - ?
# tirnanog - ?
# valhalla - ?
# arcadia - ?
# elysium - ?
# arcadia - ?
# elysium - ?
# empyrean - ?
# duat - ?
# sheol - ?
+80 -60
View File
@@ -1,70 +1,90 @@
{ inputs, ... }: {
{ inputs, mkPkgs, supportedSystems, ... }:
{
generate = { host }:
let
syscfg = import ./systems/${host}/cfg.nix;
nameValuePair = name: value: { inherit name value; };
in ({
"nixos" = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
systemType = syscfg.syscfg.type or "nixos";
defaultSystem =
{
nixos = "x86_64-linux";
macos = "x86_64-darwin";
home = "x86_64-linux";
}
.${systemType} or (throw "Unsupported system type: ${systemType}");
requestedSystem = syscfg.syscfg.system or defaultSystem;
system =
if builtins.elem requestedSystem supportedSystems then
requestedSystem
else
throw "Unsupported system '${requestedSystem}' for host '${host}'";
users = syscfg.syscfg.users or [ ];
mkLinuxHomeImports =
userConfig:
[
./modules/shared/syscfg
./modules/shared/sops
./modules/nixos
./modules/shared/colors
./modules/home
syscfg
./systems/${host}
inputs.sops-nix.nixosModules.sops
inputs.home-manager.nixosModules.home-manager
inputs.nixos-wsl.nixosModules.wsl
inputs.vscode-server.nixosModules.default
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users = builtins.listToAttrs (map (userConfig:
nameValuePair userConfig.username {
imports = [
./modules/shared/syscfg
./modules/shared/colors
./modules/home
syscfg
{ usercfg = userConfig; }
inputs.nix-colors.homeManagerModule
inputs.sops-nix.homeManagerModules.sops
];
}) syscfg.syscfg.users);
}
{ usercfg = userConfig; }
inputs.nix-colors.homeManagerModule
inputs.sops-nix.homeManagerModules.sops
];
mkDarwinHomeImports = [ inputs.nix-colors.homeManagerModule inputs.sops-nix.homeManagerModules.sops ];
mkHomeUsers = importsForUser:
builtins.listToAttrs (
map (userConfig: nameValuePair userConfig.username { imports = importsForUser userConfig; }) users
);
mkHomeManager = importsForUser: {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users = mkHomeUsers importsForUser;
};
sharedModules = [
./modules/shared/syscfg
./modules/shared/sops
syscfg
./systems/${host}
];
defaultUser =
builtins.head (
builtins.filter (user: user.username == syscfg.syscfg.defaultUser) users
++ [ { username = syscfg.syscfg.defaultUser; } ]
);
in
(
{
"nixos" = inputs.nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
modules = sharedModules ++ [
./modules/nixos
inputs.sops-nix.nixosModules.sops
inputs.home-manager.nixosModules.home-manager
"macos" = inputs.darwin.lib.darwinSystem {
system = "x86_64-darwin";
modules = [
./modules/shared/syscfg
./modules/shared/sops
syscfg
./systems/${host}
inputs.sops-nix.nixosModules.sops
inputs.home-manager.darwinModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users = builtins.listToAttrs (map (userConfig:
nameValuePair userConfig.username {
imports = [
inputs.nix-colors.homeManagerModule
inputs.sops-nix.homeManagerModules.sops
];
}) syscfg.syscfg.users);
}
];
};
"home" = inputs.home-manager.lib.homeManagerConfiguration {
modules = [ ./modules/home ];
};
_ = throw "Unsupported system";
}.${syscfg.syscfg.type});
inputs.nixos-wsl.nixosModules.wsl
inputs.vscode-server.nixosModules.default
(mkHomeManager mkLinuxHomeImports)
];
};
"macos" = inputs.darwin.lib.darwinSystem {
inherit system;
modules = sharedModules ++ [
inputs.sops-nix.darwinModules.sops
inputs.home-manager.darwinModules.home-manager
(mkHomeManager (_: mkDarwinHomeImports))
];
};
"home" = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = mkPkgs system;
extraSpecialArgs = { inherit inputs; };
modules = mkLinuxHomeImports defaultUser;
};
_ = throw "Unsupported system";
}
.${systemType}
);
}
+7 -3
View File
@@ -1,12 +1,16 @@
{ lib, config, ... }: {
{ lib, config, pkgs, ... }: {
#environment.sessionVariables.SOPS_AGE_KEY_FILE = keyFilePath;
systemd.user.startServices = "sd-switch";
systemd.user.startServices = lib.mkIf pkgs.stdenv.isLinux "sd-switch";
programs.home-manager.enable = true;
home = {
username = "${config.usercfg.username}";
homeDirectory = "/home/${config.usercfg.username}";
homeDirectory =
if pkgs.stdenv.isDarwin then
"/Users/${config.usercfg.username}"
else
"/home/${config.usercfg.username}";
stateVersion = "26.05";
};
+1 -1
View File
@@ -28,7 +28,7 @@ let
logoColor1 = p.base07;
logoColor2 = p.base07;
# ─────────────────────────────────────────────────────────────────────────
in {
in lib.mkIf config.syscfg.make.gui {
home.packages = with pkgs; [ fastfetch ];
xdg.configFile."neofetch/config.conf".source = ./config.conf;
xdg.configFile."fastfetch/logo.txt".source = ./logo.txt;
+2 -2
View File
@@ -1,5 +1,5 @@
{ config, ... }: {
programs.kitty = {
{ config, lib, ... }: {
programs.kitty = lib.mkIf config.syscfg.make.gui {
enable = true;
settings = {
foreground = "#${config.colorScheme.palette.base07}";
+3 -3
View File
@@ -1,16 +1,16 @@
{ pkgs, ... }: {
{ config, lib, pkgs, ... }: {
home.packages = with pkgs; [
ripgrep
unzip
socat
appimage-run
cbonsai
pipes-rs
cmatrix
#cava
sl
] ++ lib.optionals (config.syscfg.make.gui || config.syscfg.make.develop) [
pkgs.appimage-run
];
}
@@ -1,18 +1,22 @@
{ lib, config, pkgs, ... }: {
{ lib, config, pkgs, ... }:
let
exts = with pkgs.vscode-extensions; [
bbenoist.nix
esbenp.prettier-vscode
anthropic.claude-code
# openai.codex
];
in {
config = lib.mkIf (config.syscfg.make.develop) {
programs.vscodium = {
enable = true;
#profiles.default = {
profiles.default.extensions = with pkgs.vscode-extensions; [
bbenoist.nix
esbenp.prettier-vscode
golang.go
ms-python.vscode-pylance
ms-vscode.cpptools
dbaeumer.vscode-eslint
];
#};
profiles.default.extensions = exts;
};
programs.antigravity = {
enable = true;
profiles.default.extensions = exts;
};
};
}
+2 -1
View File
@@ -4,8 +4,9 @@
programs.imv.enable = true;
programs.obs-studio.enable = true;
services.jellyfin-mpv-shim.enable = true;
home.packages = with pkgs; [ jellyfin-mpv-shim krita gimp darktable ];
home.packages = with pkgs; [ krita gimp darktable ];
};
}
+1 -3
View File
@@ -6,13 +6,11 @@ in{
config = lib.mkIf (config.syscfg.make.gui) {
programs.mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [ mpris modernz ];
scripts = with pkgs.mpvScripts; [ mpris ];
config = {
hwdec ="auto";
profile ="high-quality";
ytdl-format = "bestvideo+bestaudio";
osc ="no";
};
bindings =
+25 -54
View File
@@ -18,7 +18,7 @@ let
aocT = "AOC 24E1W1 GNSKCHA086899";
aocB = "AOC 24E1W1 GNSKBHA080346";
lgM = "LG Electronics LG ULTRAGEAR+ 511NTDVGC194";
valinorM = "Lenovo Group Limited *";
in {
config = lib.mkIf (config.usercfg.wm == "Wayland") {
@@ -42,17 +42,9 @@ in {
mode = "1920x1080@60.000";
};}
{output = baseOutput//{
criteria = "LG UNKNOWN_TBD";
mode = "1920x1080@144.000";
};}
{output = baseOutput//{
criteria = "LG Display 0x060A Unknown";
criteria = "Lenovo Group Limited *";
mode = "1920x1080@60.020";
};}
{output = baseOutput//{
criteria = "CEX CX133 0x00000001";
mode = "2560x1600@59.972";
};}
{output = baseOutput//{
criteria = "AOC 16G3 1DDP7HA000348";
mode = "1920x1080@144.000";
@@ -99,7 +91,7 @@ in {
];
};}
{profile = {
name = "tower_0";
name = "tower_01";
outputs = [
{
criteria = "AOC 24E1W1 GNSKCHA086899";
@@ -134,54 +126,33 @@ in {
];
};}
{profile = {
name = "tower_1";
name = "valinor00";
outputs = [
{
criteria = "AOC 24E1W1 GNSKCHA086899";
position = "0,0";
}
{
criteria = "AOC 24E1W1 GNSKBHA080346";
position = "0,0";
}
{
criteria = "LG UNKNOWN_TBD";
criteria = "Lenovo Group Limited *";
position = "0,0";
}
];
};}
{profile = {
name = "laptop_0";
outputs = [{
criteria = "LG Display 0x060A Unknown";
position = "0,0";
}];
};}
{profile = {
name = "laptop_1";
outputs = [
{
criteria = "CEX CX133 0x00000001";
position = "0,0";
}
{
criteria = "LG Display 0x060A Unknown";
position = "2560,0";
}
];
};}
{profile = {
name = "laptop_2";
outputs = [
{
criteria = "AOC 16G3 1DDP7HA000348";
position = "0,0";
}
{
criteria = "LG Display 0x060A Unknown";
position = "1920,0";
}
];
exec = [
"${pkgs.writeShellScript "kanshi-hyprland-init" ''
#!/usr/bin/env bash
${pkgs.hyprland}/bin/hyprctl eval '
hl.workspace_rule({ workspace = "1", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "2", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "3", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "4", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "5", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "6", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "7", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "8", monitor = "eDP-1", default = true })
hl.workspace_rule({ workspace = "9", monitor = "eDP-1", default = true })
'
${pkgs.hyprland}/bin/hyprctl eval 'hl.dispatch(hl.dsp.focus({ monitor = "eDP-1" })); hl.dispatch(hl.dsp.focus({ workspace = "1" }));'
''}"
"${pkgs.awww}/bin/awww restore"
(moveOrOpenBar 0)
];
};}
];
};
-1
View File
@@ -31,7 +31,6 @@
sleep 2
keepassxc &
firefox &
jellyfin-mpv-shim &
easyeffects --gapplication-service &
sleep 2
-1
View File
@@ -109,7 +109,6 @@
telegram-desktop &
nextcloud &
jellyfin-mpv-shim &
#flameshot &
sleep 2
+1 -1
View File
@@ -1,5 +1,5 @@
{ config, lib, ... }: {
imports = [ ./dbus ./fonts ./hw ./locale ./network ./nix ./security ./xdg ];
imports = [ ./dbus ./docs ./fonts ./hw ./locale ./network ./nix ./security ./xdg ];
services.journald.extraConfig = ''
SystemMaxUse=512M
+14
View File
@@ -0,0 +1,14 @@
{ config, lib, ... }:
let
cfg = config.syscfg.make;
withDocs = cfg.gui || cfg.develop || cfg.serverExtras;
in
{
documentation = lib.mkIf (!withDocs) {
enable = false;
man.enable = false;
info.enable = false;
doc.enable = false;
nixos.enable = false;
};
}
+2 -2
View File
@@ -1,6 +1,6 @@
{ pkgs, ... }: {
{ config, lib, pkgs, ... }: {
fonts = {
fonts = lib.mkIf (config.syscfg.make.gui || config.syscfg.make.serverExtras) {
enableDefaultPackages = false;
fontDir.enable = true;
+3 -3
View File
@@ -1,5 +1,5 @@
{ lib, ... }: {
services.fwupd.enable = true;
{ config, lib, ... }: {
services.fwupd.enable = lib.mkDefault (config.syscfg.make.gui || config.syscfg.make.power);
hardware.enableAllFirmware = false;
services.power-profiles-daemon.enable = lib.mkDefault true;
services.power-profiles-daemon.enable = lib.mkDefault config.syscfg.make.gui;
}
+6 -3
View File
@@ -1,6 +1,9 @@
{ pkgs, ... }: {
{ config, lib, pkgs, ... }:
let
hasNfsFileSystems = lib.any (fs: fs.fsType == "nfs" || fs.fsType == "nfs4") (lib.attrValues config.fileSystems);
in {
services.fstrim.enable = true; # Improves SSD life
services.gvfs.enable = true; # User Mounted FS
services.gvfs.enable = config.syscfg.make.gui; # User Mounted FS
environment.systemPackages = with pkgs; [ nfs-utils ];
environment.systemPackages = lib.optionals hasNfsFileSystems [ pkgs.nfs-utils ];
}
+3 -3
View File
@@ -1,4 +1,4 @@
{ ... }: {
hardware.graphics.enable = true;
hardware.graphics.enable32Bit = true;
{ config, ... }: {
hardware.graphics.enable = config.syscfg.make.gui || config.syscfg.make.serverExtras || config.syscfg.make.game;
hardware.graphics.enable32Bit = config.syscfg.make.game;
}
+5 -7
View File
@@ -1,14 +1,10 @@
{ inputs, pkgs, ... }: {
{ config, inputs, lib, pkgs, ... }: {
nixpkgs.config = {
permittedInsecurePackages = [ ];
allowUnfree = true;
android_sdk.accept_license = true;
packageOverrides = pkgs: rec {
custom = import ../../../../packages { inherit pkgs; };
};
};
nixpkgs.overlays = import ../../../../overlays { inherit inputs pkgs; };
nixpkgs.overlays = import ../../../../overlays { inherit inputs; };
nix = {
package = pkgs.nixVersions.stable;
extraOptions = ''
@@ -37,7 +33,9 @@
];
};
};
programs.nix-ld = {
programs.nix-ld = lib.mkIf (
config.syscfg.make.gui || config.syscfg.make.develop || config.syscfg.make.serverExtras
) {
enable = true;
libraries = with pkgs; [
libx11 libxcb libxi libxext libxkbfile xcbutilcursor
@@ -1,10 +1,12 @@
{ pkgs, ... }: {
security.polkit.enable = true;
security.pam.services.hyprlock = { #swaylock
text = ''
auth include login
'';
};
{ config, lib, pkgs, ... }: {
config = lib.mkIf config.syscfg.make.gui {
security.polkit.enable = true;
security.pam.services.hyprlock = { #swaylock
text = ''
auth include login
'';
};
environment.systemPackages = with pkgs; [ polkit_gnome ];
environment.systemPackages = [ pkgs.polkit_gnome ];
};
}
+1
View File
@@ -3,6 +3,7 @@
config = lib.mkIf (config.syscfg.make.develop) {
programs.wireshark.enable = true;
programs.dconf.enable = true;
environment.systemPackages = with pkgs; [ wget dconf wireshark mtr android-tools ];
};
+2 -2
View File
@@ -1,5 +1,5 @@
{ pkgs, ... }: {
{ config, lib, pkgs, ... }: {
imports = [ ./debug ./develop ./telegraf ];
environment.systemPackages = with pkgs; [ pkgs.engrampa ];
environment.systemPackages = lib.optionals config.syscfg.make.gui [ pkgs.engrampa ];
}
@@ -0,0 +1,2 @@
{ name, ... }:
throw "Container app `${name}` is not implemented yet."
+2 -3
View File
@@ -1,3 +1,2 @@
{...}:{
}
{ name, ... }:
throw "Container app `${name}` is not implemented yet."
+4 -2
View File
@@ -37,7 +37,9 @@ let
environment = {
TZ = config.time.timeZone;
} // extraEnv;
autoRemoveOnStop = false;
autoStart = true;
pull = "newer";
labels = (if subdomain!=null then ({
"traefik.enable" = "true";
"traefik.http.routers.${routerName}.entrypoints" = "web-secure";
@@ -61,7 +63,7 @@ let
};
in lib.recursiveUpdate base overrides;
vmBuilder = { name, vm }: ((import "${pkgs.path}/nixos/lib/eval-config.nix" {
system = "x86_64-linux";
system = pkgs.stdenv.hostPlatform.system;
modules = [ vm.cfg
({ config, lib, modulesPath, ... }: {
imports = [
+6 -3
View File
@@ -16,7 +16,9 @@ let
basePathConfigs =
lib.mapAttrsToList (_: cfg: cfg) (lib.filterAttrs (name: _: name != "config" && name != "data") serverCfg.path);
runtimePathConfigs = concatRuntimeLists "paths";
allSetupConfigs = map (app: ({ name = app.name; envFile = ""; } // app.runtime.setup)) appsList;
allSetupConfigs = builtins.filter
(setup: setup.script != null)
(map (app: ({ name = app.name; envFile = [ ]; } // app.runtime.setup)) appsList);
allCronsConfigs = concatRuntimeLists "cron";
allVMConfigs = builtins.filter (app: app.runtime.vm != null) appsList;
mkPathSetup = cfg:
@@ -88,7 +90,7 @@ in {
value = {
description = "Run ${e.name} setup";
after = [ "podman-${e.name}-${e.trigger}.service" ];
wants = [ "podman-${e.name}-${e.trigger}.service" ];
# wants = [ "podman-${e.name}-${e.trigger}.service" ];
partOf = [ "podman-${e.name}-${e.trigger}.service" ];
wantedBy = [ "multi-user.target" ];
restartTriggers = [ e.script ];
@@ -96,7 +98,8 @@ in {
Type = "simple";
Restart = "on-failure";
RestartSec = "15s";
TimeoutStartSec = "360s";
# TimeoutStartSec = "360s";
TimeoutStartSec = "30s";
EnvironmentFile = e.envFile;
ExecStart = e.script;
RemainAfterExit = true;
+3
View File
@@ -3,7 +3,9 @@ let
listNames = config.syscfg.server.db;
containerNames = lib.concatMap (app: app.requires.secrets) (builtins.attrValues config.syscfg.server.loadedContainers);
allApps = lib.unique (listNames ++ containerNames);
needsServerSops = config.syscfg.server.loadedContainers != {} || allApps != [];
in{
config = lib.mkIf needsServerSops {
sops.secrets = {
CUSTOM = {
mode = "0444";
@@ -13,4 +15,5 @@ in{
mode = "0444";
sopsFile = ./server.yaml;
}));
};
}
+5 -3
View File
@@ -1,6 +1,8 @@
{ config, lib, pkgs, ... }:
let
isCI = builtins.elem config.syscfg.hostname [ "ci" "sandbox" ];
defaultUser = config.users.users.${config.syscfg.defaultUser} or { };
defaultGroup = if pkgs.stdenv.isDarwin then "staff" else "users";
keyFilePath = (if isCI then
"/var/lib/sops-nix/mock-key.txt"
else
@@ -8,7 +10,7 @@ let
sopsFilePath = (if isCI then ./mock.yaml else ./common.yaml);
in {
environment.systemPackages = with pkgs; [ sops ];
environment.sessionVariables.SOPS_AGE_KEY_FILE = keyFilePath;
environment.variables.SOPS_AGE_KEY_FILE = keyFilePath;
sops.defaultSopsFile = sopsFilePath;
sops.age.keyFile = keyFilePath;
@@ -19,8 +21,8 @@ in {
{
"${config.syscfg.hostname}_ssh_priv" = {
mode = "0400";
owner = config.users.users.${config.syscfg.defaultUser}.name;
group = config.users.users.${config.syscfg.defaultUser}.group;
owner = defaultUser.name or config.syscfg.defaultUser;
group = defaultUser.group or defaultGroup;
};
}
(lib.mkIf config.syscfg.net.wlp.enable {
+15 -6
View File
@@ -1,11 +1,15 @@
{ inputs, lib, ... }:
{ lib, ... }:
let
systemsDir = ../../../systems;
systemNames = lib.attrNames (lib.filterAttrs
(name: type: type == "directory" && builtins.pathExists (systemsDir + "/${name}/cfg.nix"))
(builtins.readDir systemsDir));
isIgnoredSystemDir = name: lib.hasPrefix "_" name || lib.hasPrefix "." name;
systemNames = lib.attrNames (
lib.filterAttrs
(name: type:
type == "directory"
&& !isIgnoredSystemDir name
&& builtins.pathExists (systemsDir + "/${name}/cfg.nix"))
(builtins.readDir systemsDir)
);
in with lib; {
options.usercfg = import ./user.nix {inherit lib;};
options.syscfg = {
@@ -14,6 +18,11 @@ in with lib; {
type = types.enum [ "nixos" "macos" "home" ];
default = "nixos";
};
system = mkOption {
type = types.enum [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
default = "x86_64-linux";
description = "Nix platform used to evaluate this host.";
};
defaultUser = mkOption { type = types.str; };
make = import ./make.nix {inherit lib;};
net = import ./net.nix {inherit lib;};
+2 -2
View File
@@ -6,6 +6,6 @@ with lib; {
domain = mkOption { type = types.str; default = ""; };
port = mkOption { type = types.str; default = ""; };
noProxy = mkOption { type = types.str; default = ""; };
cert = mkOption { type = types.path; default = null; };
cert = mkOption { type = types.nullOr types.path; default = null; };
};
}
}
+2 -1
View File
@@ -2,8 +2,9 @@
with lib; {
cli = mkOption { type = types.bool; default = true; };
gui = mkOption { type = types.bool; default = false; };
serverExtras = mkOption { type = types.bool; default = false; };
virt = mkOption { type = types.bool; default = false; };
power = mkOption { type = types.bool; default = false; };
game = mkOption { type = types.bool; default = false; };
develop = mkOption { type = types.bool; default = false; };
}
}
+2 -3
View File
@@ -1,15 +1,14 @@
{ inputs, pkgs, ... }:
{ inputs, ... }:
[
(final: prev: {
#openttd-jgrpp = import ./openttd-jgrpp { inherit final prev; };
#yarn-berry = import ./yarn-berry { inherit final prev; };
#eww = import ./eww { inherit final prev; };
# ags = import ./ags { inherit final prev; };
custom = import ../packages { pkgs = final; };
wine = final.unstable.wineWow64Packages.unstableFull;
unstable = import inputs.nixUnstable {
system = final.stdenv.hostPlatform.system;
stdenv.hostPlatform.system = final.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
})
+2 -9
View File
@@ -1,15 +1,8 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
amdgpu_top = pkgs.callPackage ./amdgpu_top { };
simc = pkgs.qt6.callPackage ./simc { };
repalette = pkgs.callPackage ./repalette { };
vosk = pkgs.callPackage ./vosk { };
pythonPackages = {
};
nodePackages = {
};
}
+6 -10
View File
@@ -1,13 +1,9 @@
{ inputs, ... }:
let
forEachSystem =
inputs.nixpkgs.lib.genAttrs [ "aarch64-linux" "x86_64-linux" ];
in forEachSystem (system:
let
overlays = import ../overlays { inherit inputs pkgs; };
overrides = { custom = import ../packages { inherit pkgs; }; };
pkgs = import inputs.nixpkgs { inherit system overlays; } // overrides;
{ inputs, mkPkgs, systems, ... }:
inputs.nixpkgs.lib.genAttrs systems (
system:
let pkgs = mkPkgs system;
in {
default = import ./devsh { inherit pkgs; };
devsh = import ./devsh { inherit pkgs; };
})
}
)
+1
View File
@@ -3,5 +3,6 @@
hostname = "asgard";
defaultUser = "sora";
type = "macos";
system = "x86_64-darwin";
};
}
+7 -5
View File
@@ -12,8 +12,7 @@
};
fonts = {
fontDir.enable = true;
fonts = with pkgs; [ ibm-plex openmoji-color material-design-icons ];
packages = with pkgs; [ ibm-plex openmoji-color material-design-icons ];
};
environment = {
@@ -33,8 +32,6 @@
programs = { zsh.enable = true; };
services = { nix-daemon.enable = true; };
homebrew = {
enable = true;
onActivation = {
@@ -54,7 +51,11 @@
'';
gc = {
automatic = true;
dates = "weekly";
interval = {
Weekday = 0;
Hour = 3;
Minute = 0;
};
options = "--delete-older-than 7d";
};
settings = {
@@ -67,6 +68,7 @@
};
system = {
primaryUser = "sora";
defaults = {
NSGlobalDomain = {
KeyRepeat = 1;
+5
View File
@@ -17,4 +17,9 @@
10.10.1.2 avalon.helcel.net
'';
swapDevices = [ {
device = "/swapfile";
size = 2 * 1024; # Size in megabytes (4 GB)
} ];
}
+2
View File
@@ -5,10 +5,12 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.loader.grub = {
enable = true;
device = "/dev/sda";
efiSupport = true;
efiInstallAsRemovable = true;
};
boot.initrd.availableKernelModules =
+6 -3
View File
@@ -32,6 +32,7 @@
# ===== BASE =====
traefik.subdomain = "traefik";
traefik.extra={provider="infomaniak";};
robotstxt.extra = {};
umami.subdomain = "umami";
authentik.subdomain = "sso";
searxng.subdomain = "searx";
@@ -42,14 +43,19 @@
collabora.subdomain = "office";
etherpad.subdomain = "pad";
# ethercalc.subdomain = "calc";
drawio.subdomain = "draw";
immich.subdomain = "pic";
# ===== FLIX =====
# invidious.subdomain = "yt";
# jellyfin.subdomain = "flix";
# suwayomi.subdomain = "manga";
# calibre.subdomain = "books";
# ===== ARR =====
# servarr.subdomain = "arr";
# servarr.extra.modules = ["prowlarr" "sonarr" "radarr" "flaresolverr" ];
# transmission = { subdomain = "arr"; subpath = "transmission"; };
# handbrake = { subdomain = "arr"; subpath = "hb"; };
# selfmark = { subdomain = "arr"; subpath = "selfmark"; };
# ===== DEV =====
gitea.subdomain = "git";
# ===== HOME =====
@@ -58,9 +64,6 @@
influx.subdomain = "metrum";
freshrss.subdomain = "rss";
suwayomi.subdomain = "manga";
calibre.subdomain = "books";
selfmark = { subdomain = "arr"; subpath = "selfmark"; };
favicon.extra = {
mappings = {