Compare commits

..

No commits in common. "f3a5290a80f434ad126e72930862d1be9e935b3f" and "7b04cf627423a278bc9b80c194756d1647e2def5" have entirely different histories.

9 changed files with 132 additions and 106 deletions

View file

@ -6,7 +6,7 @@
lib = nixpkgs.lib.extend (import ./extended.nix); lib = nixpkgs.lib.extend (import ./extended.nix);
inherit (builtins) mapAttrs readDir filter listToAttrs; inherit (builtins) mapAttrs readDir filter listToAttrs;
inherit (lib) nixosSystem genAttrs isNixFile mkDefaultOizysModule mkOizysModule; inherit (lib) nixosSystem genAttrs isNixFile;
inherit (lib.filesystem) listFilesRecursive; inherit (lib.filesystem) listFilesRecursive;
inherit (import ./find-modules.nix {inherit lib;}) findModulesList; inherit (import ./find-modules.nix {inherit lib;}) findModulesList;
@ -29,14 +29,16 @@ in rec {
isNixFile isNixFile
(listFilesRecursive (../. + "/hosts/${hostname}")); (listFilesRecursive (../. + "/hosts/${hostname}"));
specialArgs = {inherit inputs lib self mkDefaultOizysModule mkOizysModule;}; specialArgs = {inherit inputs lib self;};
}; };
oizysHosts = mapAttrs (name: _: mkSystem name) (readDir ../hosts); oizysHosts = mapAttrs (name: _: mkSystem name) (readDir ../hosts);
oizysPkg = forAllSystems ( oizysPkg = forAllSystems (
pkgs: rec { pkgs: let
oizys = pkgs.callPackage ../oizys {}; pkg = pkgs.callPackage ../oizys {};
default = oizys; in {
oizys = pkg;
default = pkg;
} }
); );
devShells = forAllSystems ( devShells = forAllSystems (

View file

@ -1,5 +1,5 @@
final: prev: let final: prev: let
inherit (final) hasSuffix mkEnableOption mkIf mkOption types; inherit (final) hasSuffix mkEnableOption mkIf;
runes = import ../modules/runes; runes = import ../modules/runes;
in rec { in rec {
enabled = {enable = true;}; enabled = {enable = true;};
@ -33,12 +33,4 @@ in rec {
options.oizys.${attr}.enable = mkEnableOption "enable ${attr} support"; options.oizys.${attr}.enable = mkEnableOption "enable ${attr} support";
config = mkIf config.oizys.${attr}.enable content; config = mkIf config.oizys.${attr}.enable content;
}; };
mkDefaultOizysModule = config: attr: content: {
options.oizys.${attr}.enable = mkOption {
default = true;
description = "enable ${attr} support";
type = types.bool;
};
config = mkIf config.oizys.${attr}.enable content;
};
} }

View file

@ -2,9 +2,10 @@
inputs, inputs,
pkgs, pkgs,
config, config,
mkOizysModule, lib,
... ...
}: let }: let
inherit (lib) mkOizysModule enabled;
lock = pkgs.writeShellApplication { lock = pkgs.writeShellApplication {
name = "lock"; name = "lock";
runtimeInputs = with pkgs; [swaylock]; runtimeInputs = with pkgs; [swaylock];
@ -14,7 +15,7 @@
}; };
in in
mkOizysModule config "hyprland" { mkOizysModule config "hyprland" {
programs.hyprland.enable = true; programs.hyprland = enabled;
security.pam.services.swaylock = {}; security.pam.services.swaylock = {};
# Optional, hint electron apps to use wayland: # Optional, hint electron apps to use wayland:
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";

View file

@ -1,11 +1,20 @@
{ {
inputs, inputs,
lib,
pkgs, pkgs,
config, config,
mkDefaultOizysModule,
... ...
}: }: let
mkDefaultOizysModule config "cli" { inherit (lib) mkOption mkIf types;
cfg = config.oizys.cli;
in {
options.oizys.cli.enable = mkOption {
default = true;
description = "Whether to enable cli.";
type = types.bool;
};
config = mkIf cfg.enable {
programs.direnv.enable = true; programs.direnv.enable = true;
environment.sessionVariables = { environment.sessionVariables = {
DIRENV_LOG_FORMAT = "direnv: %s"; DIRENV_LOG_FORMAT = "direnv: %s";
@ -26,4 +35,5 @@ mkDefaultOizysModule config "cli" {
btop btop
inputs.tsm.packages.${pkgs.system}.tsm inputs.tsm.packages.${pkgs.system}.tsm
]; ];
};
} }

View file

@ -1,9 +1,11 @@
{ {
config, config,
lib,
pkgs, pkgs,
mkOizysModule,
... ...
}: }: let
inherit (lib) mkOizysModule;
in
mkOizysModule config "vpn" { mkOizysModule config "vpn" {
environment.systemPackages = [pkgs.openconnect]; environment.systemPackages = [pkgs.openconnect];
} }

View file

@ -1,9 +1,11 @@
{ {
pkgs, pkgs,
config, config,
mkOizysModule, lib,
... ...
}: }: let
inherit (lib) mkOizysModule;
in
mkOizysModule config "chrome" { mkOizysModule config "chrome" {
programs.chromium = { programs.chromium = {
enable = true; enable = true;

View file

@ -1,9 +1,11 @@
{ {
config, config,
pkgs, pkgs,
mkOizysModule, lib,
... ...
}: }: let
inherit (lib) mkOizysModule;
in
mkOizysModule config "backups" { mkOizysModule config "backups" {
environment.systemPackages = with pkgs; [rclone]; environment.systemPackages = with pkgs; [rclone];

View file

@ -1,12 +1,25 @@
{ {
pkgs, pkgs,
config, config,
mkOizysModule, lib,
... ...
}: }: let
inherit (lib) mkOizysModule;
in
mkOizysModule config "docker" { mkOizysModule config "docker" {
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
lazydocker lazydocker
]; ];
} }
# in {
# options.oizys.docker.enable = mkEnableOption "enable docker support";
#
# config = mkIf cfg.enable {
# virtualisation.docker.enable = true;
# environment.systemPackages = with pkgs; [
# lazydocker
# ];
# };
# }

View file

@ -1,8 +1,10 @@
{ {
config, config,
mkOizysModule, lib,
... ...
}: }: let
inherit (lib) mkOizysModule;
in
mkOizysModule config "vbox" { mkOizysModule config "vbox" {
virtualisation.virtualbox = { virtualisation.virtualbox = {
host.enable = true; host.enable = true;