pass enabled down

This commit is contained in:
Daylin Morgan 2024-04-28 09:12:56 -05:00
parent 9ee360aa66
commit 88e2379516
Signed by: daylin
GPG Key ID: 950D13E9719334AD
10 changed files with 62 additions and 68 deletions

View File

@ -34,13 +34,13 @@
"https://hyprland.cachix.org" "https://hyprland.cachix.org"
"https://nixpkgs-wayland.cachix.org" "https://nixpkgs-wayland.cachix.org"
"https://daylin.cachix.org" "https://daylin.cachix.org"
# "https://cache.garnix.io" # "https://cache.garnix.io"
]; ];
extra-trusted-public-keys = [ extra-trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA=" "nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
"daylin.cachix.org-1:fLdSnbhKjtOVea6H9KqXeir+PyhO+sDSPhEW66ClE/k=" "daylin.cachix.org-1:fLdSnbhKjtOVea6H9KqXeir+PyhO+sDSPhEW66ClE/k="
# "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" # "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
]; ];
}; };
} }

View File

@ -1,11 +1,9 @@
{ {
self, self,
pkgs, pkgs,
lib, enabled,
... ...
}: let }: {
inherit (lib) enabled;
in {
imports = with self.nixosModules; [ imports = with self.nixosModules; [
restic restic
]; ];

View File

@ -1,6 +1,8 @@
{lib, ...}: let {
inherit (lib) enabled; lib,
in { enabled,
...
}: {
users.motd = lib.mkRune { users.motd = lib.mkRune {
number = "6"; number = "6";
rune = "algiz"; rune = "algiz";

View File

@ -1,10 +1,8 @@
{ {
self, self,
lib, enabled,
... ...
}: let }: {
inherit (lib) enabled;
in {
imports = with self.nixosModules; [ imports = with self.nixosModules; [
nix-ld nix-ld
]; ];

View File

@ -1,12 +1,11 @@
{ {
config, config,
pkgs, pkgs,
lib, enabled,
mkRune,
... ...
}: let }: {
inherit (lib) enabled; users.motd = mkRune {
in {
users.motd = lib.mkRune {
number = "2"; number = "2";
rune = "mannaz"; rune = "mannaz";
}; };

View File

@ -1,10 +1,8 @@
{ {
pkgs, pkgs,
lib, enabled,
... ...
}: let }: {
inherit (lib) enabled;
in {
oizys = { oizys = {
desktop = enabled; desktop = enabled;
hyprland = enabled; hyprland = enabled;

View File

@ -1,10 +1,9 @@
{ {
pkgs, pkgs,
lib, enabled,
mkRune,
... ...
}: let }: {
inherit (lib) enabled;
in {
networking.networkmanager = enabled; networking.networkmanager = enabled;
services.printing = enabled; services.printing = enabled;
services.fwupd = enabled; services.fwupd = enabled;
@ -28,7 +27,7 @@ in {
pamixer pamixer
]; ];
services.getty.greetingLine = lib.mkRune { services.getty.greetingLine = mkRune {
rune = "othalan"; rune = "othalan";
runeKind = "ascii"; runeKind = "ascii";
}; };

View File

@ -3,7 +3,7 @@ inputs: let
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 mkDefaultOizysModule mkOizysModule enabled mkRune;
inherit (lib.filesystem) listFilesRecursive; inherit (lib.filesystem) listFilesRecursive;
inherit (import ./find-modules.nix {inherit lib;}) findModulesList; inherit (import ./find-modules.nix {inherit lib;}) findModulesList;
@ -26,7 +26,7 @@ in rec {
isNixFile isNixFile
(listFilesRecursive (../. + "/hosts/${hostname}")); (listFilesRecursive (../. + "/hosts/${hostname}"));
specialArgs = {inherit inputs lib self mkDefaultOizysModule mkOizysModule;}; specialArgs = {inherit inputs lib self mkDefaultOizysModule mkOizysModule enabled mkRune;};
}; };
oizysHosts = mapAttrs (name: _: mkSystem name) (readDir ../hosts); oizysHosts = mapAttrs (name: _: mkSystem name) (readDir ../hosts);

View File

@ -3,9 +3,9 @@
pkgs, pkgs,
config, config,
mkOizysModule, mkOizysModule,
lib, enabled,
... ...
}: }:
# let # let
# lock = pkgs.writeShellApplication { # lock = pkgs.writeShellApplication {
# name = "lock"; # name = "lock";
@ -14,49 +14,49 @@
# swaylock -c 1e1e2e # swaylock -c 1e1e2e
# ''; # '';
# }; # };
let inherit (lib) enabled; mkOizysModule config "hyprland" {
in programs.hyprland =
mkOizysModule config "hyprland" { enabled
programs.hyprland = enabled // { // {
package = inputs.hyprland.packages.${pkgs.system}.default; package = inputs.hyprland.packages.${pkgs.system}.default;
}; };
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";
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wlr-randr wlr-randr
kanshi kanshi
brightnessctl brightnessctl
udiskie udiskie
eww eww
# notifications # notifications
libnotify libnotify
dunst dunst
# utils # utils
grimblast grimblast
ksnip ksnip
wl-clipboard wl-clipboard
rofi-wayland rofi-wayland
pavucontrol pavucontrol
catppuccin-cursors.mochaDark catppuccin-cursors.mochaDark
#hypr ecosystem #hypr ecosystem
hyprlock hyprlock
hypridle hypridle
swww swww
]; ];
nixpkgs.overlays = [ nixpkgs.overlays = [
inputs.hyprland-contrib.overlays.default inputs.hyprland-contrib.overlays.default
inputs.nixpkgs-wayland.overlay inputs.nixpkgs-wayland.overlay
# when this was active I was forced to recompile VirtualBox myself, which would just fail to compile... # when this was active I was forced to recompile VirtualBox myself, which would just fail to compile...
# Must have been one of the other non-hyprland packages modified in the overlay # Must have been one of the other non-hyprland packages modified in the overlay
# inputs.hyprland.overlays.default # inputs.hyprland.overlays.default
]; ];
} }

View File

@ -22,7 +22,7 @@ mkOizysModule config "chrome" {
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(chromium.override{ (chromium.override {
commandLineArgs = [ commandLineArgs = [
"--force-dark-mode" "--force-dark-mode"
]; ];