More opt
Some checks failed
Nix Build / build-nixos (push) Failing after 29s

This commit is contained in:
soraefir 2024-04-14 22:45:21 +02:00
parent ad1c8a0026
commit 0920a1381d
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
10 changed files with 132 additions and 130 deletions

View File

@ -1,4 +1,4 @@
{ config, lib,... }: {
{ config, lib, ... }: {
config = lib.mkIf (config.usercfg.wm == "Wayland") {
services.kanshi = {
@ -91,5 +91,5 @@
};
};
};
};
};
}

View File

@ -1,5 +1,4 @@
{ lib, config, pkgs, ... }:
{
{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.syscfg.make.gui) {
services.greetd = {

View File

@ -1,4 +1,7 @@
{ ... }: {
{ lib, config, ... }:
let isCI = builtins.elem config.syscfg.hostname [ "ci" "sandbox" ];
in {
config = lib.mkIf (!isCI) {
boot.loader = {
systemd-boot = {
enable = true;
@ -9,4 +12,5 @@
efiSysMountPoint = "/boot/efi";
};
};
};
}

View File

@ -1,7 +1,5 @@
{ lib, config, pkgs, ... }:
let cfg = config.syscfg.make.power;
in {
config = lib.mkIf cfg {
{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.syscfg.make.power) {
services.tlp = {
enable = true;
settings = {

View File

@ -1,11 +1,9 @@
{ lib, config, pkgs, ... }:
let cfg = config.syscfg.make.virt;
in {
config = lib.mkIf cfg {
{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.syscfg.make.virt) {
environment.systemPackages = [ pkgs.qemu ];
#environment.systemPackages = [ pkgs.qemu ];
virtualisation = {
libvirtd.enable = true;
#libvirtd.enable = true;
# waydroid.enable = true;
# lxd.enable = true;
docker = {

View File

@ -1,9 +1,7 @@
{ lib, config, ... }:
let cfg = config.syscfg.net.wlp;
in {
config = lib.mkIf cfg.enable {
{ lib, config, ... }: {
config = lib.mkIf (config.syscfg.net.wlp.enable) {
networking.supplicant = {
"${cfg.nif}" = {
"${config.syscfg.net.wlp.nif}" = {
configFile.path = config.sops.secrets.wifi.path;
extraConf = ''
network={

View File

@ -1,4 +1,5 @@
{ config, ... }: {
{ config, lib, ... }: {
config = lib.mkIf (config.syscfg.net.wg.enable) {
networking.wireguard = {
enable = true;
interfaces = {
@ -17,4 +18,5 @@
};
};
};
};
}

View File

@ -1,6 +1,9 @@
{ pkgs, config, ... }: {
{ pkgs, config, lib, ... }: {
config = lib.mkIf (config.syscfg.make.develop) {
programs.adb.enable = true;
programs.wireshark.enable = true;
environment.systemPackages = with pkgs; [ wget dconf wireshark ];
};
}

View File

@ -3,7 +3,7 @@ let
userOpt = with lib; {
username = mkOption { type = types.str; };
wm = mkOption {
type = types.enum [ "Wayland" "X11" "-"];
type = types.enum [ "Wayland" "X11" "-" ];
default = "-";
};
git = {