format: format codebase using nixfmt-rfc-style
This commit is contained in:
parent
9b5b84ed5a
commit
ebfaa0e940
61
flake.nix
61
flake.nix
|
@ -44,16 +44,17 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
outputs =
|
outputs =
|
||||||
inputs @ { self
|
inputs@{
|
||||||
, nur
|
self,
|
||||||
, nixpkgs
|
nur,
|
||||||
, home-manager
|
nixpkgs,
|
||||||
, sops-nix
|
home-manager,
|
||||||
, neovim-nightly-overlay
|
sops-nix,
|
||||||
, nix-index-database
|
neovim-nightly-overlay,
|
||||||
, rust-overlay
|
nix-index-database,
|
||||||
, nix-flatpak
|
rust-overlay,
|
||||||
, ...
|
nix-flatpak,
|
||||||
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
commonModules = [
|
commonModules = [
|
||||||
|
@ -78,9 +79,7 @@
|
||||||
"https://cache.nixos.org/"
|
"https://cache.nixos.org/"
|
||||||
"https://nix-community.cachix.org"
|
"https://nix-community.cachix.org"
|
||||||
];
|
];
|
||||||
trusted-public-keys = [
|
trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
sops-nix.nixosModules.sops
|
sops-nix.nixosModules.sops
|
||||||
|
@ -99,19 +98,23 @@
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations =
|
nixosConfigurations = {
|
||||||
{
|
|
||||||
castle =
|
castle =
|
||||||
let
|
let
|
||||||
profile-path = ./profiles/castle.nix;
|
profile-path = ./profiles/castle.nix;
|
||||||
hardware-configuration = ./hardware-configuration/castle.nix;
|
hardware-configuration = ./hardware-configuration/castle.nix;
|
||||||
specialArgs = { inherit inputs unstable profile-path hardware-configuration; };
|
specialArgs = {
|
||||||
|
inherit
|
||||||
|
inputs
|
||||||
|
unstable
|
||||||
|
profile-path
|
||||||
|
hardware-configuration
|
||||||
|
;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
nixpkgs.lib.nixosSystem
|
nixpkgs.lib.nixosSystem {
|
||||||
{
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules =
|
modules = [
|
||||||
[
|
|
||||||
./system
|
./system
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = specialArgs;
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
|
@ -124,7 +127,14 @@
|
||||||
let
|
let
|
||||||
profile-path = ./profiles/fort.nix;
|
profile-path = ./profiles/fort.nix;
|
||||||
hardware-configuration = ./hardware-configuration/fort.nix;
|
hardware-configuration = ./hardware-configuration/fort.nix;
|
||||||
specialArgs = { inherit inputs unstable profile-path hardware-configuration; };
|
specialArgs = {
|
||||||
|
inherit
|
||||||
|
inputs
|
||||||
|
unstable
|
||||||
|
profile-path
|
||||||
|
hardware-configuration
|
||||||
|
;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
nixpkgs.lib.nixosSystem {
|
nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
@ -141,7 +151,14 @@
|
||||||
let
|
let
|
||||||
profile-path = ./profiles/homeserver.nix;
|
profile-path = ./profiles/homeserver.nix;
|
||||||
hardware-configuration = ./hardware-configuration/homeserver.nix;
|
hardware-configuration = ./hardware-configuration/homeserver.nix;
|
||||||
specialArgs = { inherit inputs unstable profile-path hardware-configuration; };
|
specialArgs = {
|
||||||
|
inherit
|
||||||
|
inputs
|
||||||
|
unstable
|
||||||
|
profile-path
|
||||||
|
hardware-configuration
|
||||||
|
;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
nixpkgs.lib.nixosSystem {
|
nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
|
@ -1,16 +1,26 @@
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
[
|
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
sops.secrets."smb/secrets" = {
|
sops.secrets."smb/secrets" = {
|
||||||
owner = config.profile.user.name;
|
owner = config.profile.user.name;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"nvme"
|
||||||
|
"xhci_pci"
|
||||||
|
"ahci"
|
||||||
|
"usbhid"
|
||||||
|
"usb_storage"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
@ -26,9 +36,11 @@
|
||||||
systemd.packages = with pkgs; [ lact ];
|
systemd.packages = with pkgs; [ lact ];
|
||||||
systemd.services.lactd.wantedBy = [ "multi-user.target" ];
|
systemd.services.lactd.wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
system.fsPackages = [ pkgs.bindfs pkgs.cifs-utils ];
|
system.fsPackages = [
|
||||||
fileSystems."/nas" =
|
pkgs.bindfs
|
||||||
{
|
pkgs.cifs-utils
|
||||||
|
];
|
||||||
|
fileSystems."/nas" = {
|
||||||
device = "//192.168.100.5/nas";
|
device = "//192.168.100.5/nas";
|
||||||
fsType = "cifs";
|
fsType = "cifs";
|
||||||
options = [
|
options = [
|
||||||
|
@ -44,34 +56,27 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-uuid/6a987bc7-1f00-4494-bcef-b0f8afc62b7b";
|
device = "/dev/disk/by-uuid/6a987bc7-1f00-4494-bcef-b0f8afc62b7b";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-uuid/812C-A3A9";
|
device = "/dev/disk/by-uuid/812C-A3A9";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/home" =
|
fileSystems."/home" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-uuid/0add1f95-4cd5-4d44-876e-c1b381b7d133";
|
device = "/dev/disk/by-uuid/0add1f95-4cd5-4d44-876e-c1b381b7d133";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/workstation" =
|
fileSystems."/workstation" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-uuid/7a3a7a8a-91d5-43fb-a80b-376bacdb54ec";
|
device = "/dev/disk/by-uuid/7a3a7a8a-91d5-43fb-a80b-376bacdb54ec";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices = [ { device = "/dev/disk/by-uuid/15139a5f-a695-47a1-bd59-7e530989860c"; } ];
|
||||||
[
|
|
||||||
{ device = "/dev/disk/by-uuid/15139a5f-a695-47a1-bd59-7e530989860c"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
|
|
|
@ -1,32 +1,37 @@
|
||||||
{ config, lib, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
[
|
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"xhci_pci"
|
||||||
|
"ahci"
|
||||||
|
"nvme"
|
||||||
|
"usb_storage"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
# boot.kernelParams = [ "snd-intel-dspcfg.dsp_driver=1" ];
|
# boot.kernelParams = [ "snd-intel-dspcfg.dsp_driver=1" ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-label/NIXROOT";
|
device = "/dev/disk/by-label/NIXROOT";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-label/NIXBOOT";
|
device = "/dev/disk/by-label/NIXBOOT";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices = [ { device = "/dev/disk/by-label/NIXSWAP"; } ];
|
||||||
[{ device = "/dev/disk/by-label/NIXSWAP"; }];
|
|
||||||
|
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
|
@ -1,30 +1,44 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
[
|
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
config = {
|
config = {
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"xhci_pci"
|
||||||
|
"ahci"
|
||||||
|
"nvme"
|
||||||
|
"usbhid"
|
||||||
|
"usb_storage"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" "nct6775" ];
|
boot.kernelModules = [
|
||||||
|
"kvm-amd"
|
||||||
|
"nct6775"
|
||||||
|
];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-uuid/439a1beb-1443-495b-9891-012605819803";
|
device = "/dev/disk/by-uuid/439a1beb-1443-495b-9891-012605819803";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{
|
|
||||||
device = "/dev/disk/by-uuid/47A1-0296";
|
device = "/dev/disk/by-uuid/47A1-0296";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [
|
||||||
|
"fmask=0022"
|
||||||
|
"dmask=0022"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/nas" = {
|
fileSystems."/nas" = {
|
||||||
|
@ -123,7 +137,8 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.caddy.virtualHosts."public.tigor.web.id".extraConfig = /*caddy*/ ''
|
services.caddy.virtualHosts."public.tigor.web.id".extraConfig = # caddy
|
||||||
|
''
|
||||||
file_server browse
|
file_server browse
|
||||||
root * /nas/public
|
root * /nas/public
|
||||||
'';
|
'';
|
||||||
|
@ -151,6 +166,8 @@
|
||||||
libvdpau-va-gl
|
libvdpau-va-gl
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; }; # Force intel-media-driver
|
environment.sessionVariables = {
|
||||||
|
LIBVA_DRIVER_NAME = "iHD";
|
||||||
|
}; # Force intel-media-driver
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ./protobuf.nix ];
|
||||||
./protobuf.nix
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.home.environments.protobuf;
|
cfg = config.profile.home.environments.protobuf;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ./minecraft.nix ];
|
||||||
./minecraft.nix
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.games.minecraft;
|
cfg = config.profile.games.minecraft;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
|
|
@ -10,6 +10,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh.shellAliases = {
|
programs.zsh.shellAliases = {
|
||||||
vpn-bareksa = "sudo ${pkgs.openvpn}/bin/openvpn --config ${config.sops.secrets."bareksa/openvpn".path}";
|
vpn-bareksa = "sudo ${pkgs.openvpn}/bin/openvpn --config ${
|
||||||
|
config.sops.secrets."bareksa/openvpn".path
|
||||||
|
}";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.firefox;
|
cfg = config.profile.firefox;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.gnome;
|
cfg = config.profile.gnome;
|
||||||
in
|
in
|
||||||
|
|
|
@ -7,9 +7,7 @@ in
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
import = [
|
import = [ "${config.home.homeDirectory}/.cache/wallust/alacritty.toml" ];
|
||||||
"${config.home.homeDirectory}/.cache/wallust/alacritty.toml"
|
|
||||||
];
|
|
||||||
live_config_reload = true;
|
live_config_reload = true;
|
||||||
font = {
|
font = {
|
||||||
normal = {
|
normal = {
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, pkgs, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
@ -7,21 +12,19 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ gnome.gnome-keyring ];
|
||||||
gnome.gnome-keyring
|
|
||||||
];
|
|
||||||
|
|
||||||
sops.secrets.${secretKey} = { };
|
sops.secrets.${secretKey} = { };
|
||||||
wayland.windowManager.hyprland.settings.exec-once =
|
wayland.windowManager.hyprland.settings.exec-once =
|
||||||
let
|
let
|
||||||
scriptFile = getExe (pkgs.writeShellScriptBin "gnome-keyring.sh" /*sh*/ ''
|
scriptFile = getExe (
|
||||||
|
pkgs.writeShellScriptBin "gnome-keyring.sh" # sh
|
||||||
|
''
|
||||||
cat "${config.sops.secrets.${secretKey}.path}" | gnome-keyring-daemon --unlock
|
cat "${config.sops.secrets.${secretKey}.path}" | gnome-keyring-daemon --unlock
|
||||||
gnome-keyring-daemon --start --components=pkcs11,secrets,ssh
|
gnome-keyring-daemon --start --components=pkcs11,secrets,ssh
|
||||||
'');
|
''
|
||||||
|
);
|
||||||
in
|
in
|
||||||
[
|
[ ''${scriptFile}'' ];
|
||||||
''${scriptFile}''
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, config, unstable, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, pkgs, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
@ -14,12 +19,8 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
systemd.variables = [ "all" ];
|
systemd.variables = [ "all" ];
|
||||||
settings = {
|
settings = {
|
||||||
env = [
|
env = [ "DBUS_SESSION_BUS_ADDRESS,unix:path=/run/user/${toString config.profile.user.uid}/bus" ];
|
||||||
"DBUS_SESSION_BUS_ADDRESS,unix:path=/run/user/${toString config.profile.user.uid}/bus"
|
exec-once = lib.mkOrder 5 [ ''${pkgs.dbus}/bin/dbus-update-activation-environment --all'' ];
|
||||||
];
|
|
||||||
exec-once = lib.mkOrder 5 [
|
|
||||||
''${pkgs.dbus}/bin/dbus-update-activation-environment --all''
|
|
||||||
];
|
|
||||||
# window decors
|
# window decors
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 10;
|
gaps_in = 10;
|
||||||
|
@ -197,7 +198,8 @@ in
|
||||||
''stayfocused,class:^(lazygit)$''
|
''stayfocused,class:^(lazygit)$''
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
extraConfig = /*hyprlang*/ ''
|
extraConfig = # hyprlang
|
||||||
|
''
|
||||||
exec-once=foot --server
|
exec-once=foot --server
|
||||||
|
|
||||||
exec-once=nm-applet
|
exec-once=nm-applet
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, pkgs, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,18 +1,21 @@
|
||||||
{ lib, unstable, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
unstable,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home.packages = [
|
home.packages = [ unstable.hyprpaper ];
|
||||||
unstable.hyprpaper
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".config/hypr/hyprpaper.conf".text =
|
home.file.".config/hypr/hyprpaper.conf".text =
|
||||||
let
|
let
|
||||||
recent_wallpaper = "${config.home.homeDirectory}/.cache/wallpaper/current";
|
recent_wallpaper = "${config.home.homeDirectory}/.cache/wallpaper/current";
|
||||||
in
|
in
|
||||||
/*hyprlang*/
|
# hyprlang
|
||||||
''
|
''
|
||||||
preload = ${recent_wallpaper}
|
preload = ${recent_wallpaper}
|
||||||
wallpaper = ,${recent_wallpaper}
|
wallpaper = ,${recent_wallpaper}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
saveDir = "${config.home.homeDirectory}/Pictures/screenshots";
|
saveDir = "${config.home.homeDirectory}/Pictures/screenshots";
|
||||||
|
@ -10,7 +15,9 @@ in
|
||||||
satty
|
satty
|
||||||
];
|
];
|
||||||
|
|
||||||
home.activation.sattyDirCreate = lib.hm.dag.entryAfter [ "writeBoundary" ] /*sh*/ ''
|
home.activation.sattyDirCreate =
|
||||||
|
lib.hm.dag.entryAfter [ "writeBoundary" ] # sh
|
||||||
|
''
|
||||||
mkdir -p "${saveDir}"
|
mkdir -p "${saveDir}"
|
||||||
chown ${config.home.username} "${saveDir}"
|
chown ${config.home.username} "${saveDir}"
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
hyprland = config.profile.hyprland;
|
hyprland = config.profile.hyprland;
|
||||||
cfg = config.profile.services.ntfy-sh.client;
|
cfg = config.profile.services.ntfy-sh.client;
|
||||||
|
@ -6,9 +11,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf (hyprland.enable && cfg.enable) {
|
config = mkIf (hyprland.enable && cfg.enable) {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ ntfy-sh ];
|
||||||
ntfy-sh
|
|
||||||
];
|
|
||||||
|
|
||||||
# wayland.windowManager.hyprland.settings.exec-once = [
|
# wayland.windowManager.hyprland.settings.exec-once = [
|
||||||
# "ntfy subscribe --config /etc/ntfy/client.yml --from-config"
|
# "ntfy subscribe --config /etc/ntfy/client.yml --from-config"
|
||||||
|
|
|
@ -1,9 +1,17 @@
|
||||||
{ lib, pkgs, unstable, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
unstable,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
wallpaperDir = "${config.home.homeDirectory}/.cache/wallpaper";
|
wallpaperDir = "${config.home.homeDirectory}/.cache/wallpaper";
|
||||||
draw-wallpaper = pkgs.writeShellScriptBin "draw-wallpaper.sh" /*sh*/ ''
|
draw-wallpaper =
|
||||||
|
pkgs.writeShellScriptBin "draw-wallpaper.sh" # sh
|
||||||
|
''
|
||||||
image_file=$1
|
image_file=$1
|
||||||
target="${wallpaperDir}/current"
|
target="${wallpaperDir}/current"
|
||||||
blur_target="${wallpaperDir}/blurred.png"
|
blur_target="${wallpaperDir}/blurred.png"
|
||||||
|
@ -29,9 +37,7 @@ in
|
||||||
tomlFormat = pkgs.formats.toml { };
|
tomlFormat = pkgs.formats.toml { };
|
||||||
in
|
in
|
||||||
tomlFormat.generate "pyprland.toml" {
|
tomlFormat.generate "pyprland.toml" {
|
||||||
pyprland.plugins = [
|
pyprland.plugins = [ "wallpapers" ];
|
||||||
"wallpapers"
|
|
||||||
];
|
|
||||||
wallpapers = {
|
wallpapers = {
|
||||||
path = cfg.pyprland.wallpaper-dirs;
|
path = cfg.pyprland.wallpaper-dirs;
|
||||||
unique = false;
|
unique = false;
|
||||||
|
@ -45,9 +51,7 @@ in
|
||||||
"swww-daemon"
|
"swww-daemon"
|
||||||
"sleep 0.2 && swww img ${config.home.homeDirectory}/.cache/wallpaper/current"
|
"sleep 0.2 && swww img ${config.home.homeDirectory}/.cache/wallpaper/current"
|
||||||
];
|
];
|
||||||
bind = [
|
bind = [ "$mod, W, exec, pypr wall next" ];
|
||||||
"$mod, W, exec, pypr wall next"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,15 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
selectWindowScript = pkgs.writeShellScriptBin ''select-window.sh'' /*sh*/ ''
|
selectWindowScript =
|
||||||
|
pkgs.writeShellScriptBin ''select-window.sh'' # sh
|
||||||
|
''
|
||||||
state="$(hyprctl -j clients)"
|
state="$(hyprctl -j clients)"
|
||||||
active_window="$(hyprctl -j activewindow)"
|
active_window="$(hyprctl -j activewindow)"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, pkgs, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
@ -36,7 +41,9 @@ in
|
||||||
};
|
};
|
||||||
Service =
|
Service =
|
||||||
let
|
let
|
||||||
reloadScript = pkgs.writeShellScriptBin "swaync-reload.sh" /*sh*/ ''
|
reloadScript =
|
||||||
|
pkgs.writeShellScriptBin "swaync-reload.sh" # sh
|
||||||
|
''
|
||||||
${pkgs.swaynotificationcenter}/bin/swaync-client --reload-config
|
${pkgs.swaynotificationcenter}/bin/swaync-client --reload-config
|
||||||
${pkgs.swaynotificationcenter}/bin/swaync-client --reload-css
|
${pkgs.swaynotificationcenter}/bin/swaync-client --reload-css
|
||||||
'';
|
'';
|
||||||
|
@ -46,8 +53,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ libnotify ];
|
||||||
libnotify
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
in
|
in
|
||||||
|
@ -8,9 +13,7 @@ in
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# display = config.profile.hyprland.swayosd.display;
|
# display = config.profile.hyprland.swayosd.display;
|
||||||
# };
|
# };
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ swayosd ];
|
||||||
swayosd
|
|
||||||
];
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings = {
|
wayland.windowManager.hyprland.settings = {
|
||||||
exec-once = [
|
exec-once = [
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{ lib
|
{
|
||||||
, fetchFromGitea
|
lib,
|
||||||
, rustPlatform
|
fetchFromGitea,
|
||||||
, nix-update-script
|
rustPlatform,
|
||||||
, imagemagick
|
nix-update-script,
|
||||||
, makeWrapper
|
imagemagick,
|
||||||
, pkgs
|
makeWrapper,
|
||||||
|
pkgs,
|
||||||
}:
|
}:
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "wallust";
|
pname = "wallust";
|
||||||
|
@ -20,7 +21,10 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
cargoHash = "sha256-o6VRekazqbKTef6SLjHqs9/z/Q70auvunP+yFDkclpg=";
|
cargoHash = "sha256-o6VRekazqbKTef6SLjHqs9/z/Q70auvunP+yFDkclpg=";
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper pkgs.rust-bin.stable."1.79.0".default ];
|
nativeBuildInputs = [
|
||||||
|
makeWrapper
|
||||||
|
pkgs.rust-bin.stable."1.79.0".default
|
||||||
|
];
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram $out/bin/wallust \
|
wrapProgram $out/bin/wallust \
|
||||||
|
@ -33,7 +37,10 @@ rustPlatform.buildRustPackage rec {
|
||||||
description = "A better pywal";
|
description = "A better pywal";
|
||||||
homepage = "https://codeberg.org/explosion-mental/wallust";
|
homepage = "https://codeberg.org/explosion-mental/wallust";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ onemoresuza iynaix ];
|
maintainers = with lib.maintainers; [
|
||||||
|
onemoresuza
|
||||||
|
iynaix
|
||||||
|
];
|
||||||
downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}";
|
downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}";
|
||||||
mainProgram = "wallust";
|
mainProgram = "wallust";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ pkgs, unstable, lib, config, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
unstable,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
|
@ -45,7 +51,8 @@ in
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".config/wallust/wallust.toml".source = ((pkgs.formats.toml { }).generate "wallust.toml" {
|
home.file.".config/wallust/wallust.toml".source = (
|
||||||
|
(pkgs.formats.toml { }).generate "wallust.toml" {
|
||||||
# See https://codeberg.org/explosion-mental/wallust/src/branch/master/wallust.toml
|
# See https://codeberg.org/explosion-mental/wallust/src/branch/master/wallust.toml
|
||||||
# for more information about the configuration options.
|
# for more information about the configuration options.
|
||||||
|
|
||||||
|
@ -122,6 +129,7 @@ in
|
||||||
target = "${config.home.homeDirectory}/.config/foot/colors.ini";
|
target = "${config.home.homeDirectory}/.config/foot/colors.ini";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
}
|
||||||
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ lib, config, unstable, pkgs, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
unstable,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
modules = (pkgs.formats.json { }).generate "modules.json" {
|
modules = (pkgs.formats.json { }).generate "modules.json" {
|
||||||
|
@ -16,7 +22,11 @@ let
|
||||||
phone = " ";
|
phone = " ";
|
||||||
portable = " ";
|
portable = " ";
|
||||||
car = " ";
|
car = " ";
|
||||||
default = [ " " " " " " ];
|
default = [
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
];
|
||||||
};
|
};
|
||||||
on-click = "pavucontrol";
|
on-click = "pavucontrol";
|
||||||
};
|
};
|
||||||
|
@ -37,7 +47,13 @@ let
|
||||||
format-charging = " {capacity}%";
|
format-charging = " {capacity}%";
|
||||||
format-plugged = " {capacity}%";
|
format-plugged = " {capacity}%";
|
||||||
format-alt = "{icon} {time}";
|
format-alt = "{icon} {time}";
|
||||||
format-icons = [ " " " " " " " " " " ];
|
format-icons = [
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
" "
|
||||||
|
];
|
||||||
};
|
};
|
||||||
network = {
|
network = {
|
||||||
format = "{ifname}";
|
format = "{ifname}";
|
||||||
|
@ -58,7 +74,6 @@ let
|
||||||
tooltip = false;
|
tooltip = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
"hyprland/workspaces" = {
|
"hyprland/workspaces" = {
|
||||||
on-click = "activate";
|
on-click = "activate";
|
||||||
active-only = false;
|
active-only = false;
|
||||||
|
@ -164,12 +179,8 @@ in
|
||||||
margin-right = 0;
|
margin-right = 0;
|
||||||
spacing = 0;
|
spacing = 0;
|
||||||
reload_style_on_change = true;
|
reload_style_on_change = true;
|
||||||
include = [
|
include = [ modules ];
|
||||||
modules
|
modules-left = [ "hyprland/window" ];
|
||||||
];
|
|
||||||
modules-left = [
|
|
||||||
"hyprland/window"
|
|
||||||
];
|
|
||||||
modules-center = [
|
modules-center = [
|
||||||
"hyprland/workspaces"
|
"hyprland/workspaces"
|
||||||
"custom/notification"
|
"custom/notification"
|
||||||
|
@ -193,5 +204,3 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, config, pkgs, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.obs;
|
cfg = config.profile.obs;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.bitwarden;
|
cfg = config.profile.bitwarden;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ bitwarden ];
|
||||||
bitwarden
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/autostart/bitwarden.desktop" = lib.mkIf cfg.autostart {
|
".config/autostart/bitwarden.desktop" = lib.mkIf cfg.autostart {
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.home.programs.bruno;
|
cfg = config.profile.home.programs.bruno;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable { home.packages = with pkgs; [ bruno ]; };
|
||||||
home.packages = with pkgs; [
|
|
||||||
bruno
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.dbeaver;
|
cfg = config.profile.dbeaver;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = [ pkgs.dbeaver-bin ]; };
|
||||||
home.packages = [ pkgs.dbeaver-bin ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,16 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
cfg = config.profile.discord;
|
cfg = config.profile.discord;
|
||||||
autostartScript = pkgs.writeShellScriptBin "discord.sh" /*sh*/ ''
|
autostartScript =
|
||||||
|
pkgs.writeShellScriptBin "discord.sh" # sh
|
||||||
|
''
|
||||||
sleep 10;
|
sleep 10;
|
||||||
until ${pkgs.unixtools.ping}/bin/ping -c 1 discord.com;
|
until ${pkgs.unixtools.ping}/bin/ping -c 1 discord.com;
|
||||||
do sleep 1;
|
do sleep 1;
|
||||||
|
@ -14,21 +21,13 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ vesktop ];
|
||||||
vesktop
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".config/discord/settings.json".text = builtins.toJSON {
|
home.file.".config/discord/settings.json".text = builtins.toJSON { SKIP_HOST_UPDATE = true; };
|
||||||
SKIP_HOST_UPDATE = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings.exec-once = lib.mkIf cfg.autostart [
|
wayland.windowManager.hyprland.settings.exec-once = lib.mkIf cfg.autostart [ autostartScriptFile ];
|
||||||
autostartScriptFile
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".config/autostart/discord.sh" = lib.mkIf cfg.autostart {
|
home.file.".config/autostart/discord.sh" = lib.mkIf cfg.autostart { source = autostartScriptFile; };
|
||||||
source = autostartScriptFile;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.swaync.settings.scripts._10-discord =
|
services.swaync.settings.scripts._10-discord =
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.programs.easyeffects;
|
cfg = config.profile.programs.easyeffects;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = with pkgs; [ easyeffects ]; };
|
||||||
home.packages = with pkgs; [ easyeffects ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.home.programs.elisa;
|
cfg = config.profile.home.programs.elisa;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable { home.packages = with pkgs; [ kdePackages.elisa ]; };
|
||||||
home.packages = with pkgs; [
|
|
||||||
kdePackages.elisa
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,8 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh.initExtra = /*bash*/ ''
|
programs.zsh.initExtra = # bash
|
||||||
|
''
|
||||||
function osc7-pwd() {
|
function osc7-pwd() {
|
||||||
emulate -L zsh # also sets localoptions for us
|
emulate -L zsh # also sets localoptions for us
|
||||||
setopt extendedglob
|
setopt extendedglob
|
||||||
|
|
|
@ -85,30 +85,14 @@
|
||||||
"#f4dbd6"
|
"#f4dbd6"
|
||||||
"bold"
|
"bold"
|
||||||
];
|
];
|
||||||
inactiveBorderColor = [
|
inactiveBorderColor = [ "#a5adcb" ];
|
||||||
"#a5adcb"
|
optionsTextColor = [ "#8aadf4" ];
|
||||||
];
|
selectedLineBgColor = [ "#363a4f" ];
|
||||||
optionsTextColor = [
|
cherryPickedCommitBgColor = [ "#494d64" ];
|
||||||
"#8aadf4"
|
cherryPickedCommitFgColor = [ "#f4dbd6" ];
|
||||||
];
|
unstagedChangesColor = [ "#ed8796" ];
|
||||||
selectedLineBgColor = [
|
defaultFgColor = [ "#cad3f5" ];
|
||||||
"#363a4f"
|
searchingActiveBorderColor = [ "#eed49f" ];
|
||||||
];
|
|
||||||
cherryPickedCommitBgColor = [
|
|
||||||
"#494d64"
|
|
||||||
];
|
|
||||||
cherryPickedCommitFgColor = [
|
|
||||||
"#f4dbd6"
|
|
||||||
];
|
|
||||||
unstagedChangesColor = [
|
|
||||||
"#ed8796"
|
|
||||||
];
|
|
||||||
defaultFgColor = [
|
|
||||||
"#cad3f5"
|
|
||||||
];
|
|
||||||
searchingActiveBorderColor = [
|
|
||||||
"#eed49f"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.gh;
|
cfg = config.profile.gh;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = [ pkgs.gh ]; };
|
||||||
home.packages = [ pkgs.gh ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, lib, pkgs, unstable, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.go;
|
cfg = config.profile.go;
|
||||||
impl = pkgs.buildGoModule rec {
|
impl = pkgs.buildGoModule rec {
|
||||||
|
@ -17,9 +23,7 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
programs.go = {
|
programs.go = {
|
||||||
enable = true;
|
enable = true;
|
||||||
goPrivate = [
|
goPrivate = [ "gitlab.bareksa.com" ];
|
||||||
"gitlab.bareksa.com"
|
|
||||||
];
|
|
||||||
package = unstable.go_1_23;
|
package = unstable.go_1_23;
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.jellyfin;
|
cfg = config.profile.jellyfin;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = [ pkgs.jellyfin-media-player ]; };
|
||||||
home.packages = [
|
|
||||||
pkgs.jellyfin-media-player
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,8 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
programs.zsh.initExtra = /*bash*/ ''
|
programs.zsh.initExtra = # bash
|
||||||
|
''
|
||||||
if [[ "$TERM" == "xterm-kitty" ]]; then
|
if [[ "$TERM" == "xterm-kitty" ]]; then
|
||||||
alias ssh="kitty +kitten ssh"
|
alias ssh="kitty +kitten ssh"
|
||||||
fi
|
fi
|
||||||
|
@ -24,7 +25,7 @@ in
|
||||||
tab_bar_margin_width = toString 0.2;
|
tab_bar_margin_width = toString 0.2;
|
||||||
tab_bar_style = "slant";
|
tab_bar_style = "slant";
|
||||||
background_blur = 40;
|
background_blur = 40;
|
||||||
background_opacity = toString 0.90;
|
background_opacity = toString 0.9;
|
||||||
cursor_blink_interval = toString 0.5;
|
cursor_blink_interval = toString 0.5;
|
||||||
};
|
};
|
||||||
keybindings = {
|
keybindings = {
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, lib, unstable, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.microsoft-edge;
|
cfg = config.profile.microsoft-edge;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = [ unstable.microsoft-edge ]; };
|
||||||
home.packages = [ unstable.microsoft-edge ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,18 @@
|
||||||
{ config, lib, unstable, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.programs.mongodb-compass;
|
cfg = config.profile.programs.mongodb-compass;
|
||||||
sopsFile = ../../secrets/bareksa.yaml;
|
sopsFile = ../../secrets/bareksa.yaml;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
sops.secrets."bareksa/mongodb-compass" = { inherit sopsFile; };
|
sops.secrets."bareksa/mongodb-compass" = {
|
||||||
|
inherit sopsFile;
|
||||||
|
};
|
||||||
home.packages = [ unstable.mongodb-compass ];
|
home.packages = [ unstable.mongodb-compass ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.mpv;
|
cfg = config.profile.mpv;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
{ config, unstable, pkgs, lib, ... }:
|
{
|
||||||
|
config,
|
||||||
|
unstable,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.neovide;
|
cfg = config.profile.neovide;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home.packages = [
|
home.packages = [ unstable.neovide ];
|
||||||
unstable.neovide
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".config/neovide/config.toml".source =
|
home.file.".config/neovide/config.toml".source =
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, pkgs, lib, unstable, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.neovim;
|
cfg = config.profile.neovim;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
@ -22,7 +28,9 @@ in
|
||||||
ping = "${pkgs.unixtools.ping}/bin/ping";
|
ping = "${pkgs.unixtools.ping}/bin/ping";
|
||||||
host = "github.com";
|
host = "github.com";
|
||||||
sleep = "${pkgs.coreutils}/bin/sleep";
|
sleep = "${pkgs.coreutils}/bin/sleep";
|
||||||
script = pkgs.writeScriptBin "clone-nvim.sh" /*bash*/ ''
|
script =
|
||||||
|
pkgs.writeScriptBin "clone-nvim.sh" # bash
|
||||||
|
''
|
||||||
#!${bash}
|
#!${bash}
|
||||||
|
|
||||||
if [ -d "${nvimCloneDir}" ]; then
|
if [ -d "${nvimCloneDir}" ]; then
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.nextcloud;
|
cfg = config.profile.nextcloud;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = [ pkgs.nextcloud-client ]; };
|
||||||
home.packages = [ pkgs.nextcloud-client ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,5 @@ let
|
||||||
cfg = config.profile.nnn;
|
cfg = config.profile.nnn;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { programs.nnn.enable = true; };
|
||||||
programs.nnn.enable = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.home.programs.obsidian;
|
cfg = config.profile.home.programs.obsidian;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable { home.packages = with pkgs; [ obsidian ]; };
|
||||||
home.packages = with pkgs; [
|
|
||||||
obsidian
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.services.redis;
|
cfg = config.profile.services.redis;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
in
|
in
|
||||||
lib.mkMerge [
|
lib.mkMerge [ (mkIf cfg.client.cli.enable { home.packages = [ pkgs.redis ]; }) ]
|
||||||
(mkIf cfg.client.cli.enable {
|
|
||||||
home.packages = [
|
|
||||||
pkgs.redis
|
|
||||||
];
|
|
||||||
})
|
|
||||||
]
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.slack;
|
cfg = config.profile.slack;
|
||||||
autostartScript = pkgs.writeShellScriptBin "slack.sh" ''
|
autostartScript = pkgs.writeShellScriptBin "slack.sh" ''
|
||||||
|
@ -11,13 +16,9 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [ slack ];
|
home.packages = with pkgs; [ slack ];
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings.exec-once = lib.mkIf cfg.autostart [
|
wayland.windowManager.hyprland.settings.exec-once = lib.mkIf cfg.autostart [ autostartScriptFile ];
|
||||||
autostartScriptFile
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".config/autostart/slack.sh" = lib.mkIf cfg.autostart {
|
home.file.".config/autostart/slack.sh" = lib.mkIf cfg.autostart { source = autostartScriptFile; };
|
||||||
source = autostartScriptFile;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.swaync.settings.scripts._10-slack =
|
services.swaync.settings.scripts._10-slack =
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.spotify;
|
cfg = config.profile.spotify;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { home.packages = with pkgs; [ spotify ]; };
|
||||||
home.packages = with pkgs; [
|
|
||||||
spotify
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,6 @@
|
||||||
format = "[$ssh_symbol$hostname]($style)\\] ";
|
format = "[$ssh_symbol$hostname]($style)\\] ";
|
||||||
};
|
};
|
||||||
palette = "catppuccin_${flavour}";
|
palette = "catppuccin_${flavour}";
|
||||||
} // builtins.fromTOML (builtins.readFile
|
} // builtins.fromTOML (builtins.readFile (catppuccin-starship-repo + /palettes/${flavour}.toml));
|
||||||
(catppuccin-starship-repo + /palettes/${flavour}.toml));
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.tofi;
|
cfg = config.profile.tofi;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.variety;
|
cfg = config.profile.variety;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, unstable, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.vscode;
|
cfg = config.profile.vscode;
|
||||||
in
|
in
|
||||||
|
|
|
@ -9,7 +9,8 @@ in
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
|
|
||||||
extraConfig = /*lua*/ ''
|
extraConfig = # lua
|
||||||
|
''
|
||||||
-- take config from ./base_config.lua
|
-- take config from ./base_config.lua
|
||||||
local config = require('base_config')
|
local config = require('base_config')
|
||||||
|
|
||||||
|
@ -20,7 +21,8 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh.initExtra = /*bash*/ ''
|
programs.zsh.initExtra = # bash
|
||||||
|
''
|
||||||
if [ -n "$WEZTERM_PANE" ]; then
|
if [ -n "$WEZTERM_PANE" ]; then
|
||||||
alias ssh="wezterm ssh"
|
alias ssh="wezterm ssh"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ lib, config, pkgs, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.whatsapp;
|
cfg = config.profile.whatsapp;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.programs.yazi;
|
cfg = config.profile.programs.yazi;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
@ -11,7 +16,11 @@ in
|
||||||
settings = {
|
settings = {
|
||||||
manager = {
|
manager = {
|
||||||
# 1/8 width for parent, 4/8 width for current, 3/8 width for preview
|
# 1/8 width for parent, 4/8 width for current, 3/8 width for preview
|
||||||
ratio = [ 1 4 3 ];
|
ratio = [
|
||||||
|
1
|
||||||
|
4
|
||||||
|
3
|
||||||
|
];
|
||||||
sort_by = "natural";
|
sort_by = "natural";
|
||||||
sort_sensitive = false;
|
sort_sensitive = false;
|
||||||
sort_dir_first = true;
|
sort_dir_first = true;
|
||||||
|
@ -22,13 +31,24 @@ in
|
||||||
};
|
};
|
||||||
opener = {
|
opener = {
|
||||||
edit = [
|
edit = [
|
||||||
{ run = ''nvim "$@"''; block = true; desc = "Edit in Neovim"; }
|
{
|
||||||
|
run = ''nvim "$@"'';
|
||||||
|
block = true;
|
||||||
|
desc = "Edit in Neovim";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
play = [
|
play = [
|
||||||
{ run = ''mpv "$@"''; orphan = true; desc = "Play in MPV"; }
|
{
|
||||||
|
run = ''mpv "$@"'';
|
||||||
|
orphan = true;
|
||||||
|
desc = "Play in MPV";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
open = [
|
open = [
|
||||||
{ run = ''xdg-open "$@"''; desc = "Open"; }
|
{
|
||||||
|
run = ''xdg-open "$@"'';
|
||||||
|
desc = "Open";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
open = {
|
open = {
|
||||||
|
@ -48,17 +68,29 @@ in
|
||||||
# Multiple openers for a single rule
|
# Multiple openers for a single rule
|
||||||
{
|
{
|
||||||
name = "*.html";
|
name = "*.html";
|
||||||
use = [ "open" "edit" ];
|
use = [
|
||||||
|
"open"
|
||||||
|
"edit"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
append_rules = [
|
append_rules = [
|
||||||
{ name = "*"; use = "open"; }
|
{
|
||||||
|
name = "*";
|
||||||
|
use = "open";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
plugin = {
|
plugin = {
|
||||||
prepend_previewers = [
|
prepend_previewers = [
|
||||||
{ mime = "{image,audio,video}/*"; run = "mediainfo"; }
|
{
|
||||||
{ mime = "application/x-subrip"; run = "mediainfo"; }
|
mime = "{image,audio,video}/*";
|
||||||
|
run = "mediainfo";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mime = "application/x-subrip";
|
||||||
|
run = "mediainfo";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, lib, pkgs, unstable, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
unstable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.home.programs.zellij;
|
cfg = config.profile.home.programs.zellij;
|
||||||
plugins = {
|
plugins = {
|
||||||
|
@ -26,7 +32,7 @@ in
|
||||||
# autoloaded first after zshenv.
|
# autoloaded first after zshenv.
|
||||||
programs.zsh.initExtraFirst = lib.mkOrder 50 (
|
programs.zsh.initExtraFirst = lib.mkOrder 50 (
|
||||||
if cfg.autoAttach then
|
if cfg.autoAttach then
|
||||||
/*bash*/
|
# bash
|
||||||
''
|
''
|
||||||
if [[ ! -z "$SSH_CLIENT" ]]; then
|
if [[ ! -z "$SSH_CLIENT" ]]; then
|
||||||
if [[ -z "$ZELLIJ" ]]; then
|
if [[ -z "$ZELLIJ" ]]; then
|
||||||
|
@ -47,7 +53,8 @@ in
|
||||||
fi
|
fi
|
||||||
''
|
''
|
||||||
else
|
else
|
||||||
/*bash*/ ''
|
# bash
|
||||||
|
''
|
||||||
if [[ ! -z "$SSH_CLIENT" ]]; then
|
if [[ ! -z "$SSH_CLIENT" ]]; then
|
||||||
if [[ -z "$ZELLIJ" ]]; then
|
if [[ -z "$ZELLIJ" ]]; then
|
||||||
zellij attach -c default
|
zellij attach -c default
|
||||||
|
@ -61,7 +68,8 @@ in
|
||||||
let
|
let
|
||||||
mod = cfg.mod;
|
mod = cfg.mod;
|
||||||
in
|
in
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
theme "catppuccin-mocha";
|
theme "catppuccin-mocha";
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ plugins, timezone, ... }:
|
{ plugins, timezone, ... }:
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
layout {
|
layout {
|
||||||
pane split_direction="vertical" {
|
pane split_direction="vertical" {
|
||||||
pane
|
pane
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ plugins, timezone, ... }:
|
{ plugins, timezone, ... }:
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
layout {
|
layout {
|
||||||
pane split_direction="vertical" {
|
pane split_direction="vertical" {
|
||||||
pane
|
pane
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ plugins, timezone, ... }:
|
{ plugins, timezone, ... }:
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
layout {
|
layout {
|
||||||
pane split_direction="vertical" {
|
pane split_direction="vertical" {
|
||||||
pane
|
pane
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ plugins, timezone, ... }:
|
{ plugins, timezone, ... }:
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
layout {
|
layout {
|
||||||
pane split_direction="vertical" {
|
pane split_direction="vertical" {
|
||||||
pane
|
pane
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ plugins, timezone, ... }:
|
{ plugins, timezone, ... }:
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
layout {
|
layout {
|
||||||
pane split_direction="vertical" {
|
pane split_direction="vertical" {
|
||||||
pane
|
pane
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ plugins, timezone, ... }:
|
{ plugins, timezone, ... }:
|
||||||
/*kdl*/ ''
|
# kdl
|
||||||
|
''
|
||||||
layout {
|
layout {
|
||||||
pane split_direction="vertical" {
|
pane split_direction="vertical" {
|
||||||
pane
|
pane
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.home.programs.zoom;
|
cfg = config.profile.home.programs.zoom;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable { home.packages = with pkgs; [ zoom-us ]; };
|
||||||
home.packages = with pkgs; [
|
|
||||||
zoom-us
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib.strings) optionalString concatStrings;
|
inherit (lib.strings) optionalString concatStrings;
|
||||||
in
|
in
|
||||||
|
@ -11,7 +16,8 @@ in
|
||||||
];
|
];
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
envExtra = /*bash*/ ''
|
envExtra = # bash
|
||||||
|
''
|
||||||
# Disable loading global RC files in /etc/zsh/*
|
# Disable loading global RC files in /etc/zsh/*
|
||||||
# Mostly because they are unneeded
|
# Mostly because they are unneeded
|
||||||
# and global rc files has to be small for security reasons (no plugins)
|
# and global rc files has to be small for security reasons (no plugins)
|
||||||
|
@ -52,25 +58,28 @@ in
|
||||||
size = 40000;
|
size = 40000;
|
||||||
};
|
};
|
||||||
completionInit = lib.mkOrder 9999 (concatStrings [
|
completionInit = lib.mkOrder 9999 (concatStrings [
|
||||||
/* bash */
|
# bash
|
||||||
''
|
''
|
||||||
mkdir -p $ZSH_CACHE_DIR/completions
|
mkdir -p $ZSH_CACHE_DIR/completions
|
||||||
fpath+=$ZSH_CACHE_DIR/completions
|
fpath+=$ZSH_CACHE_DIR/completions
|
||||||
fpath+=${pkgs.zsh-completions}/share/zsh/site-functions
|
fpath+=${pkgs.zsh-completions}/share/zsh/site-functions
|
||||||
''
|
''
|
||||||
(optionalString config.profile.podman.enable /*bash*/ ''
|
(optionalString config.profile.podman.enable # bash
|
||||||
|
''
|
||||||
if [ ! -f $ZSH_CACHE_DIR/completions/_podman ]; then
|
if [ ! -f $ZSH_CACHE_DIR/completions/_podman ]; then
|
||||||
podman completion zsh > $ZSH_CACHE_DIR/completions/_podman
|
podman completion zsh > $ZSH_CACHE_DIR/completions/_podman
|
||||||
fi
|
fi
|
||||||
'')
|
''
|
||||||
|
)
|
||||||
# Value below must be always last in the completionInit
|
# Value below must be always last in the completionInit
|
||||||
/* bash */
|
# bash
|
||||||
''
|
''
|
||||||
autoload -U compinit && compinit
|
autoload -U compinit && compinit
|
||||||
''
|
''
|
||||||
]);
|
]);
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
initExtraFirst = /*bash*/ ''
|
initExtraFirst = # bash
|
||||||
|
''
|
||||||
export ZSH_CACHE_DIR=$HOME/.cache/zsh
|
export ZSH_CACHE_DIR=$HOME/.cache/zsh
|
||||||
|
|
||||||
# if [ -f $HOME/.config/zsh/.p10k.zsh ]; then
|
# if [ -f $HOME/.config/zsh/.p10k.zsh ]; then
|
||||||
|
@ -83,7 +92,7 @@ in
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
initExtra = concatStrings [
|
initExtra = concatStrings [
|
||||||
/*bash*/
|
# bash
|
||||||
''
|
''
|
||||||
packfiles() {
|
packfiles() {
|
||||||
find $(NIXPKGS_ALLOW_UNFREE=1 nix build "nixpkgs#$1" --impure --no-link --print-out-paths)
|
find $(NIXPKGS_ALLOW_UNFREE=1 nix build "nixpkgs#$1" --impure --no-link --print-out-paths)
|
||||||
|
|
|
@ -13,9 +13,7 @@
|
||||||
|
|
||||||
#### Required Options ####
|
#### Required Options ####
|
||||||
|
|
||||||
hostname = lib.mkOption {
|
hostname = lib.mkOption { type = lib.types.str; };
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
networking.disableWaitOnline = lib.mkEnableOption "disable waiting for network";
|
networking.disableWaitOnline = lib.mkEnableOption "disable waiting for network";
|
||||||
networking.externalInterface = lib.mkOption {
|
networking.externalInterface = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
|
@ -28,12 +26,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
user = {
|
user = {
|
||||||
name = lib.mkOption {
|
name = lib.mkOption { type = lib.types.str; };
|
||||||
type = lib.types.str;
|
fullName = lib.mkOption { type = lib.types.str; };
|
||||||
};
|
|
||||||
fullName = lib.mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
uid = lib.mkOption {
|
uid = lib.mkOption {
|
||||||
type = lib.types.int;
|
type = lib.types.int;
|
||||||
default = 1000;
|
default = 1000;
|
||||||
|
@ -46,9 +40,7 @@
|
||||||
getty.autoLogin = lib.mkEnableOption "auto-login to getty";
|
getty.autoLogin = lib.mkEnableOption "auto-login to getty";
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = lib.mkOption {
|
system.stateVersion = lib.mkOption { type = lib.types.str; };
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
#### Optionals ####
|
#### Optionals ####
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,10 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
displayManager = lib.mkOption {
|
displayManager = lib.mkOption {
|
||||||
type = lib.types.enum [ "sddm" "tuigreet" ];
|
type = lib.types.enum [
|
||||||
|
"sddm"
|
||||||
|
"tuigreet"
|
||||||
|
];
|
||||||
default = "tuigreet";
|
default = "tuigreet";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -74,12 +77,24 @@ in
|
||||||
|
|
||||||
wallust = {
|
wallust = {
|
||||||
backend = lib.mkOption {
|
backend = lib.mkOption {
|
||||||
type = lib.types.enum [ "full" "resized" "wal" "thumb" "fastresize" "kmeans" ];
|
type = lib.types.enum [
|
||||||
|
"full"
|
||||||
|
"resized"
|
||||||
|
"wal"
|
||||||
|
"thumb"
|
||||||
|
"fastresize"
|
||||||
|
"kmeans"
|
||||||
|
];
|
||||||
default = "kmeans";
|
default = "kmeans";
|
||||||
description = "How the image is parse, in order to get the colors";
|
description = "How the image is parse, in order to get the colors";
|
||||||
};
|
};
|
||||||
colorSpace = lib.mkOption {
|
colorSpace = lib.mkOption {
|
||||||
type = lib.types.enum [ "lab" "labmixed" "lch" "lchmixed" ];
|
type = lib.types.enum [
|
||||||
|
"lab"
|
||||||
|
"labmixed"
|
||||||
|
"lch"
|
||||||
|
"lchmixed"
|
||||||
|
];
|
||||||
default = "lch";
|
default = "lch";
|
||||||
description = "What color space to use to produce and select the most prominent colors";
|
description = "What color space to use to produce and select the most prominent colors";
|
||||||
};
|
};
|
||||||
|
|
|
@ -43,7 +43,6 @@
|
||||||
autostart = lib.mkEnableOption "variety autostart";
|
autostart = lib.mkEnableOption "variety autostart";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
bitwarden = {
|
bitwarden = {
|
||||||
enable = lib.mkEnableOption "bitwarden";
|
enable = lib.mkEnableOption "bitwarden";
|
||||||
autostart = lib.mkEnableOption "bitwarden autostart";
|
autostart = lib.mkEnableOption "bitwarden autostart";
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkEnableOption mkOption types;
|
inherit (lib) mkEnableOption mkOption types;
|
||||||
in
|
in
|
||||||
|
|
|
@ -4,9 +4,7 @@ let
|
||||||
secondaryMonitor = "ViewSonic Corporation VX3276-QHD V9W204243765";
|
secondaryMonitor = "ViewSonic Corporation VX3276-QHD V9W204243765";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ../options ];
|
||||||
../options
|
|
||||||
];
|
|
||||||
|
|
||||||
profile = {
|
profile = {
|
||||||
hostname = "castle";
|
hostname = "castle";
|
||||||
|
@ -36,8 +34,20 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
waybar.persistent-workspaces = {
|
waybar.persistent-workspaces = {
|
||||||
DP-1 = [ 1 2 3 4 5 6 7 ];
|
DP-1 = [
|
||||||
DP-2 = [ 8 9 10 ];
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
4
|
||||||
|
5
|
||||||
|
6
|
||||||
|
7
|
||||||
|
];
|
||||||
|
DP-2 = [
|
||||||
|
8
|
||||||
|
9
|
||||||
|
10
|
||||||
|
];
|
||||||
};
|
};
|
||||||
pyprland.wallpaper-dirs = [ "/nas/redmage/images/windows" ];
|
pyprland.wallpaper-dirs = [ "/nas/redmage/images/windows" ];
|
||||||
wallust.alpha = 80;
|
wallust.alpha = 80;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ../options ];
|
||||||
../options
|
|
||||||
];
|
|
||||||
|
|
||||||
profile = {
|
profile = {
|
||||||
hostname = "fort";
|
hostname = "fort";
|
||||||
|
@ -15,9 +13,7 @@
|
||||||
hyprland = {
|
hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
monitors = [
|
monitors = [ ",preferred,auto,1" ];
|
||||||
",preferred,auto,1"
|
|
||||||
];
|
|
||||||
workspaces = [
|
workspaces = [
|
||||||
"1,default:true"
|
"1,default:true"
|
||||||
"2"
|
"2"
|
||||||
|
@ -32,7 +28,18 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
waybar.persistent-workspaces = {
|
waybar.persistent-workspaces = {
|
||||||
eDP-1 = [ 1 2 3 4 5 6 7 8 9 10 ];
|
eDP-1 = [
|
||||||
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
4
|
||||||
|
5
|
||||||
|
6
|
||||||
|
7
|
||||||
|
8
|
||||||
|
9
|
||||||
|
10
|
||||||
|
];
|
||||||
};
|
};
|
||||||
pyprland.wallpaper-dirs = [ "/home/tigor/Syncthing/Redmage/Laptop-Kerja" ];
|
pyprland.wallpaper-dirs = [ "/home/tigor/Syncthing/Redmage/Laptop-Kerja" ];
|
||||||
wallust.alpha = 80;
|
wallust.alpha = 80;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ../options ];
|
||||||
../options
|
|
||||||
];
|
|
||||||
|
|
||||||
profile = {
|
profile = {
|
||||||
hostname = "homeserver";
|
hostname = "homeserver";
|
||||||
|
@ -23,7 +21,10 @@
|
||||||
openssh.enable = true;
|
openssh.enable = true;
|
||||||
go.enable = true;
|
go.enable = true;
|
||||||
networking.firewall.enable = true;
|
networking.firewall.enable = true;
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
80
|
||||||
|
443
|
||||||
|
];
|
||||||
podman = {
|
podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
pihole.enable = true;
|
pihole.enable = true;
|
||||||
|
|
|
@ -3,7 +3,8 @@ let
|
||||||
hyprctl = "${pkgs.hyprland}/bin/hyprctl";
|
hyprctl = "${pkgs.hyprland}/bin/hyprctl";
|
||||||
gojq = "${pkgs.gojq}/bin/gojq";
|
gojq = "${pkgs.gojq}/bin/gojq";
|
||||||
in
|
in
|
||||||
pkgs.writeShellScriptBin "focus-window.sh" /*sh*/ ''
|
pkgs.writeShellScriptBin "focus-window.sh" # sh
|
||||||
|
''
|
||||||
appname="$SWAYNC_APP_NAME"
|
appname="$SWAYNC_APP_NAME"
|
||||||
state="$(${hyprctl} -j clients)"
|
state="$(${hyprctl} -j clients)"
|
||||||
window="$(echo "$state" | ${gojq} -r --arg APP "$appname" '.[] | select(.class == $APP) | .address')"
|
window="$(echo "$state" | ${gojq} -r --arg APP "$appname" '.[] | select(.class == $APP) | .address')"
|
||||||
|
@ -11,4 +12,4 @@ pkgs.writeShellScriptBin "focus-window.sh" /*sh*/ ''
|
||||||
if [[ "$window" != "" ]]; then
|
if [[ "$window" != "" ]]; then
|
||||||
${hyprctl} dispatch focuswindow address:"$window"
|
${hyprctl} dispatch focuswindow address:"$window"
|
||||||
fi
|
fi
|
||||||
''
|
''
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ hardware-configuration, profile-path, config, pkgs, ... }:
|
{
|
||||||
|
hardware-configuration,
|
||||||
|
profile-path,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
profile-path
|
profile-path
|
||||||
|
@ -16,10 +22,12 @@
|
||||||
networking.hostName = config.profile.hostname;
|
networking.hostName = config.profile.hostname;
|
||||||
systemd.services.NetworkManager-wait-online.enable = !config.profile.networking.disableWaitOnline;
|
systemd.services.NetworkManager-wait-online.enable = !config.profile.networking.disableWaitOnline;
|
||||||
|
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
];
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
http-connections = 8
|
http-connections = 8
|
||||||
connect-timeout = 5
|
connect-timeout = 5
|
||||||
|
@ -79,6 +87,7 @@
|
||||||
# Tools for nh
|
# Tools for nh
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
nvd
|
nvd
|
||||||
|
nixfmt-rfc-style
|
||||||
];
|
];
|
||||||
|
|
||||||
services.dbus.implementation = "broker";
|
services.dbus.implementation = "broker";
|
||||||
|
|
|
@ -12,7 +12,8 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
onCalendar = "weekly"; # Default value
|
onCalendar = "weekly"; # Default value
|
||||||
};
|
};
|
||||||
packages = [ ]
|
packages =
|
||||||
|
[ ]
|
||||||
++ optional cfg.zen-browser.enable "io.github.zen_browser.zen"
|
++ optional cfg.zen-browser.enable "io.github.zen_browser.zen"
|
||||||
++ optional cfg.redisinsight.enable "com.redis.RedisInsight";
|
++ optional cfg.redisinsight.enable "com.redis.RedisInsight";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.keyboard;
|
cfg = config.profile.keyboard;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.android;
|
cfg = config.profile.android;
|
||||||
username = config.profile.user.name;
|
username = config.profile.user.name;
|
||||||
|
@ -7,8 +12,6 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
users.users.${username}.extraGroups = [ "adbusers" ];
|
users.users.${username}.extraGroups = [ "adbusers" ];
|
||||||
programs.adb.enable = true;
|
programs.adb.enable = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [ androidenv.androidPkgs_9_0.platform-tools ];
|
||||||
androidenv.androidPkgs_9_0.platform-tools
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.brightnessctl;
|
cfg = config.profile.brightnessctl;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable { environment.systemPackages = [ pkgs.brightnessctl ]; };
|
||||||
environment.systemPackages = [ pkgs.brightnessctl ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
fonts = {
|
fonts = {
|
||||||
packages = with pkgs;
|
packages = with pkgs; [
|
||||||
[
|
|
||||||
# icon fonts
|
# icon fonts
|
||||||
material-design-icons
|
material-design-icons
|
||||||
|
|
||||||
|
@ -26,9 +25,18 @@
|
||||||
# the reason there's Noto Color Emoji everywhere is to override DejaVu's
|
# the reason there's Noto Color Emoji everywhere is to override DejaVu's
|
||||||
# B&W emojis that would sometimes show instead of some Color emojis
|
# B&W emojis that would sometimes show instead of some Color emojis
|
||||||
fontconfig.defaultFonts = {
|
fontconfig.defaultFonts = {
|
||||||
serif = [ "Noto Serif" "Noto Color Emoji" ];
|
serif = [
|
||||||
sansSerif = [ "Noto Sans" "Noto Color Emoji" ];
|
"Noto Serif"
|
||||||
monospace = [ "JetBrainsMono Nerd Font" "Noto Color Emoji" ];
|
"Noto Color Emoji"
|
||||||
|
];
|
||||||
|
sansSerif = [
|
||||||
|
"Noto Sans"
|
||||||
|
"Noto Color Emoji"
|
||||||
|
];
|
||||||
|
monospace = [
|
||||||
|
"JetBrainsMono Nerd Font"
|
||||||
|
"Noto Color Emoji"
|
||||||
|
];
|
||||||
emoji = [ "Noto Color Emoji" ];
|
emoji = [ "Noto Color Emoji" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ inputs, config, lib, pkgs, ... }:
|
{
|
||||||
|
inputs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.hyprland;
|
cfg = config.profile.hyprland;
|
||||||
hyprlandPkg = inputs.hyprland.packages."${pkgs.system}".hyprland;
|
hyprlandPkg = inputs.hyprland.packages."${pkgs.system}".hyprland;
|
||||||
|
@ -68,9 +74,7 @@ in
|
||||||
services.dbus.enable = true;
|
services.dbus.enable = true;
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraPortals = with pkgs; [
|
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
|
||||||
xdg-desktop-portal-gtk
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.file-roller.enable = true;
|
programs.file-roller.enable = true;
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.kde;
|
cfg = config.profile.kde;
|
||||||
in
|
in
|
||||||
|
@ -24,8 +29,7 @@ in
|
||||||
haruna
|
haruna
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.etc."chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json".source =
|
environment.etc."chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json".source = "${pkgs.plasma-browser-integration}/etc/chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json";
|
||||||
"${pkgs.plasma-browser-integration}/etc/chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json";
|
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
|
|
@ -24,7 +24,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.etc."systemd/resolved.conf.d/10-bareksa.conf".source = (pkgs.formats.ini { }).generate "10-bareksa.conf" {
|
environment.etc."systemd/resolved.conf.d/10-bareksa.conf".source =
|
||||||
|
(pkgs.formats.ini { }).generate "10-bareksa.conf"
|
||||||
|
{
|
||||||
Resolve = {
|
Resolve = {
|
||||||
# This dns server is only available when VPN is connected.
|
# This dns server is only available when VPN is connected.
|
||||||
DNS = "192.168.3.215";
|
DNS = "192.168.3.215";
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.openssh;
|
cfg = config.profile.openssh;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
|
@ -39,9 +44,14 @@ lib.mkMerge [
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sops.secrets."ntfy/tokens/homeserver" = { sopsFile = ../../secrets/ntfy.yaml; };
|
sops.secrets."ntfy/tokens/homeserver" = {
|
||||||
|
sopsFile = ../../secrets/ntfy.yaml;
|
||||||
|
};
|
||||||
sops.templates."ntfy-ssh-login.sh" = {
|
sops.templates."ntfy-ssh-login.sh" = {
|
||||||
content = builtins.readFile (lib.meta.getExe (pkgs.writeShellScriptBin "ntfy-ssh-login.sh" /*sh*/ ''
|
content = builtins.readFile (
|
||||||
|
lib.meta.getExe (
|
||||||
|
pkgs.writeShellScriptBin "ntfy-ssh-login.sh" # sh
|
||||||
|
''
|
||||||
if [ "$PAM_TYPE" == "open_session" ]; then
|
if [ "$PAM_TYPE" == "open_session" ]; then
|
||||||
${getExe pkgs.curl} -X POST \
|
${getExe pkgs.curl} -X POST \
|
||||||
-H "X-Priority: 4" \
|
-H "X-Priority: 4" \
|
||||||
|
@ -51,18 +61,16 @@ lib.mkMerge [
|
||||||
-d "$PAM_USER from $PAM_RHOST" \
|
-d "$PAM_USER from $PAM_RHOST" \
|
||||||
https://ntfy.tigor.web.id/ssh
|
https://ntfy.tigor.web.id/ssh
|
||||||
fi
|
fi
|
||||||
''));
|
''
|
||||||
|
)
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
security.pam.services.sshd.text = lib.mkDefault (lib.mkAfter ''
|
security.pam.services.sshd.text = lib.mkDefault (
|
||||||
|
lib.mkAfter ''
|
||||||
session optional pam_exec.so ${getExe pkgs.bash} ${config.sops.templates."ntfy-ssh-login.sh".path}
|
session optional pam_exec.so ${getExe pkgs.bash} ${config.sops.templates."ntfy-ssh-login.sh".path}
|
||||||
'');
|
''
|
||||||
|
);
|
||||||
})
|
})
|
||||||
{
|
{ profile.services.ntfy-sh.client.settings.subscribe = [ { topic = "ssh"; } ]; }
|
||||||
profile.services.ntfy-sh.client.settings.subscribe = [
|
|
||||||
{
|
|
||||||
topic = "ssh";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.printing;
|
cfg = config.profile.printing;
|
||||||
username = config.profile.user.name;
|
username = config.profile.user.name;
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.scanner;
|
cfg = config.profile.scanner;
|
||||||
username = config.profile.user.name;
|
username = config.profile.user.name;
|
||||||
|
@ -6,15 +11,11 @@ in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
users.users.${username}.extraGroups = [ "scanner" ];
|
users.users.${username}.extraGroups = [ "scanner" ];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [ skanlite ];
|
||||||
skanlite
|
|
||||||
];
|
|
||||||
hardware.sane = {
|
hardware.sane = {
|
||||||
enable = true;
|
enable = true;
|
||||||
brscan4.enable = true; # Brother Scanner
|
brscan4.enable = true; # Brother Scanner
|
||||||
extraBackends = with pkgs; [
|
extraBackends = with pkgs; [ sane-airscan ];
|
||||||
sane-airscan
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.vial;
|
cfg = config.profile.vial;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.programs.yazi;
|
cfg = config.profile.programs.yazi;
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
@ -16,7 +21,11 @@ in
|
||||||
yazi = {
|
yazi = {
|
||||||
manager = {
|
manager = {
|
||||||
# 1/8 width for parent, 4/8 width for current, 3/8 width for preview
|
# 1/8 width for parent, 4/8 width for current, 3/8 width for preview
|
||||||
ratio = [ 1 4 3 ];
|
ratio = [
|
||||||
|
1
|
||||||
|
4
|
||||||
|
3
|
||||||
|
];
|
||||||
sort_by = "natural";
|
sort_by = "natural";
|
||||||
sort_sensitive = false;
|
sort_sensitive = false;
|
||||||
sort_dir_first = true;
|
sort_dir_first = true;
|
||||||
|
@ -27,13 +36,24 @@ in
|
||||||
};
|
};
|
||||||
opener = {
|
opener = {
|
||||||
edit = [
|
edit = [
|
||||||
{ run = ''nvim "$@"''; block = true; desc = "Edit in Neovim"; }
|
{
|
||||||
|
run = ''nvim "$@"'';
|
||||||
|
block = true;
|
||||||
|
desc = "Edit in Neovim";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
play = [
|
play = [
|
||||||
{ run = ''mpv "$@"''; orphan = true; desc = "Play in MPV"; }
|
{
|
||||||
|
run = ''mpv "$@"'';
|
||||||
|
orphan = true;
|
||||||
|
desc = "Play in MPV";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
open = [
|
open = [
|
||||||
{ run = ''xdg-open "$@"''; desc = "Open"; }
|
{
|
||||||
|
run = ''xdg-open "$@"'';
|
||||||
|
desc = "Open";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
open = {
|
open = {
|
||||||
|
@ -53,11 +73,17 @@ in
|
||||||
# Multiple openers for a single rule
|
# Multiple openers for a single rule
|
||||||
{
|
{
|
||||||
name = "*.html";
|
name = "*.html";
|
||||||
use = [ "open" "edit" ];
|
use = [
|
||||||
|
"open"
|
||||||
|
"edit"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
append_rules = [
|
append_rules = [
|
||||||
{ name = "*"; use = "open"; }
|
{
|
||||||
|
name = "*";
|
||||||
|
use = "open";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ lib, stdenv, fetchzip, gettext, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchzip,
|
||||||
|
gettext,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cockpit-podman";
|
pname = "cockpit-podman";
|
||||||
|
@ -9,11 +15,12 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "sha256-qLt6x9W+M/DztzcFxyWZLHUTM1ZsPCOykO+6o/URa6c=";
|
sha256 = "sha256-qLt6x9W+M/DztzcFxyWZLHUTM1ZsPCOykO+6o/URa6c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ gettext ];
|
||||||
gettext
|
|
||||||
];
|
|
||||||
|
|
||||||
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
makeFlags = [
|
||||||
|
"DESTDIR=$(out)"
|
||||||
|
"PREFIX="
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace Makefile \
|
substituteInPlace Makefile \
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.profile.podman;
|
cfg = config.profile.podman;
|
||||||
username = config.profile.user.name;
|
username = config.profile.user.name;
|
||||||
|
@ -34,7 +39,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
# Taken IP-Range Subnets
|
# Taken IP-Range Subnets
|
||||||
#
|
#
|
||||||
# 10.88.0.2 -> Redmage
|
# 10.88.0.2 -> Redmage
|
||||||
|
|
|
@ -31,9 +31,7 @@ in
|
||||||
TZ = "Asia/Jakarta";
|
TZ = "Asia/Jakarta";
|
||||||
# MEMOS_PUBLIC = "true";
|
# MEMOS_PUBLIC = "true";
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [ "${rootVolume}:/var/opt/memos" ];
|
||||||
"${rootVolume}:/var/opt/memos"
|
|
||||||
];
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
|
|
|
@ -5,7 +5,9 @@ let
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
virtualisation.oci-containers.containers."metrics" = mkIf (cfg.enable && config.profile.services.telemetry.enable) {
|
virtualisation.oci-containers.containers."metrics" =
|
||||||
|
mkIf (cfg.enable && config.profile.services.telemetry.enable)
|
||||||
|
{
|
||||||
image = "quay.io/navidys/prometheus-podman-exporter";
|
image = "quay.io/navidys/prometheus-podman-exporter";
|
||||||
hostname = "metrics";
|
hostname = "metrics";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
@ -14,9 +16,7 @@ in
|
||||||
TZ = "Asia/Jakarta";
|
TZ = "Asia/Jakarta";
|
||||||
CONTAINER_HOST = "unix:///run/podman/podman.sock";
|
CONTAINER_HOST = "unix:///run/podman/podman.sock";
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [ "/run/podman/podman.sock:/run/podman/podman.sock" ];
|
||||||
"/run/podman/podman.sock:/run/podman/podman.sock"
|
|
||||||
];
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
|
@ -26,7 +26,8 @@ in
|
||||||
"io.containers.autoupdate" = "registry";
|
"io.containers.autoupdate" = "registry";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
environment.etc."alloy/config.alloy".text = /*hcl*/ ''
|
environment.etc."alloy/config.alloy".text = # hcl
|
||||||
|
''
|
||||||
prometheus.scrape "podman" {
|
prometheus.scrape "podman" {
|
||||||
targets = [{__address__ = "${ip}:9882"}]
|
targets = [{__address__ = "${ip}:9882"}]
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
name = "minecraft";
|
name = "minecraft";
|
||||||
podman = config.profile.podman;
|
podman = config.profile.podman;
|
||||||
|
@ -24,7 +29,8 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf (podman.enable && podman.${name}.enable) {
|
config = mkIf (podman.enable && podman.${name}.enable) {
|
||||||
services.caddy.virtualHosts.${domain}.extraConfig = /*html*/ ''
|
services.caddy.virtualHosts.${domain}.extraConfig = # html
|
||||||
|
''
|
||||||
header Content-Type text/html
|
header Content-Type text/html
|
||||||
respond <<EOF
|
respond <<EOF
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
@ -50,7 +56,9 @@ in
|
||||||
#
|
#
|
||||||
# To keep up with the update, restart the server at 4am everyday.
|
# To keep up with the update, restart the server at 4am everyday.
|
||||||
systemd =
|
systemd =
|
||||||
let serviceName = "podman-${name}"; in
|
let
|
||||||
|
serviceName = "podman-${name}";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
tmpfiles.settings."${serviceName}-mount".${rootVolume}.d = {
|
tmpfiles.settings."${serviceName}-mount".${rootVolume}.d = {
|
||||||
group = config.profile.user.name;
|
group = config.profile.user.name;
|
||||||
|
@ -88,9 +96,7 @@ in
|
||||||
"19132:19132/udp"
|
"19132:19132/udp"
|
||||||
"19132:19132"
|
"19132:19132"
|
||||||
];
|
];
|
||||||
volumes = [
|
volumes = [ "${rootVolume}:/minecraft" ];
|
||||||
"${rootVolume}:/minecraft"
|
|
||||||
];
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
|
|
|
@ -24,9 +24,7 @@ in
|
||||||
environment = {
|
environment = {
|
||||||
TZ = "Asia/Jakarta";
|
TZ = "Asia/Jakarta";
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [ "/tmp:/tmp" ];
|
||||||
"/tmp:/tmp"
|
|
||||||
];
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
|
|
|
@ -34,16 +34,12 @@ in
|
||||||
ZO_DATA_DIR = "/data";
|
ZO_DATA_DIR = "/data";
|
||||||
ZO_WEB_URL = "https://${domain}";
|
ZO_WEB_URL = "https://${domain}";
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [ "${rootVolume}/data:/data" ];
|
||||||
"${rootVolume}/data:/data"
|
|
||||||
];
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
];
|
];
|
||||||
environmentFiles = [
|
environmentFiles = [ config.sops.secrets."openobserve/env".path ];
|
||||||
config.sops.secrets."openobserve/env".path
|
|
||||||
];
|
|
||||||
labels = {
|
labels = {
|
||||||
"io.containers.autoupdate" = "registry";
|
"io.containers.autoupdate" = "registry";
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,7 +27,9 @@ in
|
||||||
#
|
#
|
||||||
# This works by collecting all the virtual hosts defined in caddy
|
# This works by collecting all the virtual hosts defined in caddy
|
||||||
# and check if the length of the list changes, if it does, we restart the pihole container.
|
# and check if the length of the list changes, if it does, we restart the pihole container.
|
||||||
systemd.services."podman-${name}".restartTriggers = attrsets.mapAttrsToList (name: _: name) config.services.caddy.virtualHosts;
|
systemd.services."podman-${name}".restartTriggers = attrsets.mapAttrsToList (
|
||||||
|
name: _: name
|
||||||
|
) config.services.caddy.virtualHosts;
|
||||||
environment.etc."pihole/custom.list" = {
|
environment.etc."pihole/custom.list" = {
|
||||||
# Copy file instead of symlink
|
# Copy file instead of symlink
|
||||||
mode = "0444";
|
mode = "0444";
|
||||||
|
@ -46,7 +48,9 @@ in
|
||||||
''
|
''
|
||||||
192.168.100.5 vpn.tigor.web.id
|
192.168.100.5 vpn.tigor.web.id
|
||||||
${strings.concatStringsSep "\n" (
|
${strings.concatStringsSep "\n" (
|
||||||
attrsets.mapAttrsToList (name: _: "192.168.100.5 ${strings.removePrefix "https://" name}") config.services.caddy.virtualHosts
|
attrsets.mapAttrsToList (
|
||||||
|
name: _: "192.168.100.5 ${strings.removePrefix "https://" name}"
|
||||||
|
) config.services.caddy.virtualHosts
|
||||||
)}
|
)}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
@ -72,9 +76,7 @@ in
|
||||||
"pihole-dnsmasq:/etc/dnsmasq.d"
|
"pihole-dnsmasq:/etc/dnsmasq.d"
|
||||||
"/etc/pihole/custom.list:/etc/pihole/custom.list"
|
"/etc/pihole/custom.list:/etc/pihole/custom.list"
|
||||||
];
|
];
|
||||||
environmentFiles = [
|
environmentFiles = [ config.sops.secrets."pihole/env".path ];
|
||||||
config.sops.secrets."pihole/env".path
|
|
||||||
];
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
name = "qbittorrent";
|
name = "qbittorrent";
|
||||||
domain = "${name}.tigor.web.id";
|
domain = "${name}.tigor.web.id";
|
||||||
|
@ -24,17 +29,19 @@ lib.mkMerge [
|
||||||
chown ${uid}:${gid} ${volume} ${volume}/{config,downloads,progress,watch}
|
chown ${uid}:${gid} ${volume} ${volume}/{config,downloads,progress,watch}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
sops = {
|
sops = {
|
||||||
secrets =
|
secrets =
|
||||||
let
|
let
|
||||||
opts = { sopsFile = ../../secrets/ntfy.yaml; };
|
opts = {
|
||||||
|
sopsFile = ../../secrets/ntfy.yaml;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
"ntfy/tokens/homeserver" = opts;
|
"ntfy/tokens/homeserver" = opts;
|
||||||
};
|
};
|
||||||
templates = {
|
templates = {
|
||||||
"qbittorrent-ntfy-env".content = /*sh*/ ''
|
"qbittorrent-ntfy-env".content = # sh
|
||||||
|
''
|
||||||
NTFY_TOKEN=${config.sops.placeholder."ntfy/tokens/homeserver"}
|
NTFY_TOKEN=${config.sops.placeholder."ntfy/tokens/homeserver"}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
@ -42,7 +49,9 @@ lib.mkMerge [
|
||||||
|
|
||||||
virtualisation.oci-containers.containers.${name} =
|
virtualisation.oci-containers.containers.${name} =
|
||||||
let
|
let
|
||||||
finish-notify-script = pkgs.writeScriptBin "notify-finish.sh" (optionalString config.services.ntfy-sh.enable /*sh*/ ''
|
finish-notify-script = pkgs.writeScriptBin "notify-finish.sh" (
|
||||||
|
optionalString config.services.ntfy-sh.enable # sh
|
||||||
|
''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# $1 = %N | Torrent Name
|
# $1 = %N | Torrent Name
|
||||||
# $2 = %L | Category
|
# $2 = %L | Category
|
||||||
|
@ -64,8 +73,11 @@ lib.mkMerge [
|
||||||
-H "X-Tags: white_check_mark,$2" \
|
-H "X-Tags: white_check_mark,$2" \
|
||||||
-d "Number of Files: $7, Size: $size" \
|
-d "Number of Files: $7, Size: $size" \
|
||||||
https://ntfy.tigor.web.id/qbittorrent?priority=4
|
https://ntfy.tigor.web.id/qbittorrent?priority=4
|
||||||
'');
|
''
|
||||||
start-notify-script = pkgs.writeScriptBin "notify-start.sh" (optionalString config.services.ntfy-sh.enable /*sh*/ ''
|
);
|
||||||
|
start-notify-script = pkgs.writeScriptBin "notify-start.sh" (
|
||||||
|
optionalString config.services.ntfy-sh.enable # sh
|
||||||
|
''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
curl -X POST \
|
curl -X POST \
|
||||||
-H "Authorization: Bearer $NTFY_TOKEN" \
|
-H "Authorization: Bearer $NTFY_TOKEN" \
|
||||||
|
@ -73,7 +85,8 @@ lib.mkMerge [
|
||||||
-H "X-Tags: rocket,$2" \
|
-H "X-Tags: rocket,$2" \
|
||||||
-d "Starts downloading" \
|
-d "Starts downloading" \
|
||||||
https://ntfy.tigor.web.id/qbittorrent
|
https://ntfy.tigor.web.id/qbittorrent
|
||||||
'');
|
''
|
||||||
|
);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit image;
|
inherit image;
|
||||||
|
@ -102,19 +115,11 @@ lib.mkMerge [
|
||||||
"--ip=${ip}"
|
"--ip=${ip}"
|
||||||
"--network=podman"
|
"--network=podman"
|
||||||
];
|
];
|
||||||
environmentFiles = [
|
environmentFiles = [ config.sops.templates."qbittorrent-ntfy-env".path ];
|
||||||
config.sops.templates."qbittorrent-ntfy-env".path
|
|
||||||
];
|
|
||||||
labels = {
|
labels = {
|
||||||
"io.containers.autoupdate" = "registry";
|
"io.containers.autoupdate" = "registry";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
{
|
{ profile.services.ntfy-sh.client.settings.subscribe = [ { topic = "qbittorrent"; } ]; }
|
||||||
profile.services.ntfy-sh.client.settings.subscribe = [
|
|
||||||
{
|
|
||||||
topic = "qbittorrent";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue