Compare commits

..

No commits in common. "b259b18026f7e9794fd69a451cb0c1f810b7fb81" and "fc641582aaadf31cfd756fcaa3bd63b024656059" have entirely different histories.

14 changed files with 3 additions and 126 deletions

2
.gitignore vendored
View file

@ -1,2 +1,2 @@
.stfolder
.stfolder/
.stversions/

View file

View file

@ -45,8 +45,6 @@
"x86_64-darwin"
"aarch64-darwin"
];
flake.overlays.default = import ./overlays;
perSystem =
{ pkgs, ... }:
{

View file

@ -11,16 +11,6 @@
enable = lib.mkForce true;
powerOnBoot = true;
};
hardware.bluetooth.settings = {
Input = {
# This allows the BLE handshake to bypass classic security checks
ClassicBondedOnly = false;
};
General = {
# Helps with the "AuthenticationCanceled" error
JustWorksRepairing = "always";
};
};
services.upower = {
enable = true;

View file

@ -45,7 +45,6 @@
'';
in
{
home.packages = with pkgs; [
kdePackages.dolphin
kdePackages.kio
@ -54,8 +53,7 @@
kdePackages.ark
kdePackages.ffmpegthumbs
kdePackages.kdegraphics-thumbnailers
kdePackages.kpipewire
whitesur-icon-theme
# whitesur-icon-theme
];
# Helps some non-KDE apps pick Dolphin for directory browsing.
@ -140,14 +138,6 @@
"application/x-rar"
];
};
services.udiskie = {
enable = true;
settings = {
program_options = {
file_manager = "${pkgs.kdePackages.dolphin}/bin/dolphin";
};
};
};
home.sessionVariables = {
XDG_ICON_DIR = "${pkgs.whitesur-icon-theme}/share/icons/WhiteSur";

View file

@ -9,7 +9,6 @@
ticktick
gimp
vlc
feishin
];
}
)

View file

@ -5,8 +5,6 @@
(
{ pkgs, ... }:
{
services.udisks2.enable = true;
environment.systemPackages = with pkgs; [
wlr-randr
wl-clipboard

View file

@ -16,8 +16,6 @@
kubernetes-helm # Package manager for Kubernetes applications, simplifying deployment and management.
minikube # Local Kubernetes cluster for easy testing and development.
stern # Multi-container log tailing and streaming for Kubernetes.
lfk
istioctl
];
}
)

View file

@ -7,18 +7,11 @@
pkgs,
...
}:
# let
# repeater = pkgs.callPackage ../../../../pkgs/repeater.nix { };
# in
{
home.packages = with pkgs; [
vhs
libqalculate
nurl
nix-init
nixpkgs-review
repeater
];
}
)

View file

@ -5,7 +5,7 @@
];
services.clamav = {
daemon.enable = false;
daemon.enable = true;
updater.enable = true;
scanner.enable = true;
fangfrisch.enable = true;

View file

@ -95,11 +95,6 @@ let
};
modules = [
{
nixpkgs.overlays = [
inputs.self.overlays.default
];
}
../inventory/current.nix
../inventory/features.nix
../inventory/hosts.nix

View file

@ -1,4 +0,0 @@
final: prev: {
repeater = prev.callPackage ../pkgs/repeater/package.nix { };
lfk = prev.callPackage ../pkgs/lfk/package.nix { };
}

View file

@ -1,32 +0,0 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "lfk";
version = "0.9.36";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "janosmiko";
repo = "lfk";
tag = "v${finalAttrs.version}";
hash = "sha256-aIWqZ90Mz6Oc554wLB4691JsX68VG0pD3+AuAOkqNis=";
};
vendorHash = "sha256-2YhpOg5asUYaMQxorwTt1gkyiA165wjBxDoIUJ74sro=";
ldflags = [ "-s" ];
meta = {
description = "Lightning Fast Kubernetes navigator";
longDescription = "LFK is a lightning-fast, keyboard-focused, yazi-inspired terminal user interface for navigating and managing Kubernetes clusters. Built for speed and efficiency, it brings a three-column Miller columns layout with an owner-based resource hierarchy to your terminal";
homepage = "https://github.com/janosmiko/lfk";
changelog = "https://github.com/janosmiko/lfk/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ gwg313 ];
mainProgram = "lfk";
};
})

View file

@ -1,48 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
bzip2,
sqlite,
vulkan-loader,
zstd,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "repeater";
version = "0.1.9";
src = fetchFromGitHub {
owner = "shaankhosla";
repo = "repeater";
tag = "v${finalAttrs.version}";
hash = "sha256-vkiDJ9hGEa9PCaNjgGJAvAFGUxXJK04ezvXyAmJB3bk=";
};
cargoHash = "sha256-/ttQpk9JnSRhE/VOJlz60LpV1PJ/spzXQ1EPLcox1mw=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
bzip2
sqlite
vulkan-loader
zstd
];
env = {
ZSTD_SYS_USE_PKG_CONFIG = true;
};
meta = {
description = "Spaced repetition, in your terminal";
homepage = "https://github.com/shaankhosla/repeater";
changelog = "https://github.com/shaankhosla/repeater/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
mainProgram = "repeater";
};
})