test
This commit is contained in:
parent
3792d15fd0
commit
28b5df5280
8 changed files with 89 additions and 61 deletions
34
flake.lock
generated
34
flake.lock
generated
|
@ -1,23 +1,5 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"flake-utils": {
|
|
||||||
"inputs": {
|
|
||||||
"systems": "systems"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1731533236,
|
|
||||||
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1742707865,
|
"lastModified": 1742707865,
|
||||||
|
@ -34,24 +16,8 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": "flake-utils",
|
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"systems": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1681028828,
|
|
||||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": "root",
|
"root": "root",
|
||||||
|
|
28
flake.nix
28
flake.nix
|
@ -1,11 +1,10 @@
|
||||||
{
|
{
|
||||||
description = "jiriks74's ZSH configuration";
|
description = "jiriks74's ZSH configuration";
|
||||||
|
|
||||||
inputs = {
|
# inputs = {
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
# };
|
||||||
};
|
|
||||||
|
|
||||||
outputs = {nixpkgs, ...}: let
|
outputs = {self, nixpkgs, ...}: let
|
||||||
# Supported systems for your flake packages, shell, etc.
|
# Supported systems for your flake packages, shell, etc.
|
||||||
systems = [
|
systems = [
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
|
@ -20,25 +19,8 @@
|
||||||
in {
|
in {
|
||||||
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
|
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
|
||||||
homeManagerModules = {
|
homeManagerModules = {
|
||||||
default = {
|
zsh = (import ./module.nix);
|
||||||
config,
|
default = self.outputs.homeManagerModules.zsh;
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
inport = ./zsh.nix;
|
|
||||||
};
|
|
||||||
withPackages = {
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
./zsh.nix
|
|
||||||
./packages.nix
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
36
module.nix
Normal file
36
module.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# ~/.config/nixpkgs/modules/jiriks74/zsh/default.nix
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.jiriks74.zsh;
|
||||||
|
# Helper to get the path relative to this file
|
||||||
|
mkPath = path: ./modules + "/${path}";
|
||||||
|
in {
|
||||||
|
options.jiriks74.zsh = {
|
||||||
|
# Option to enable the core Zsh configuration (like programs.zsh.enable)
|
||||||
|
enable = lib.mkEnableOption "Enable jiriks74's core zsh configuration";
|
||||||
|
|
||||||
|
# Option to include extra packages
|
||||||
|
qolPackages = lib.mkEnableOption "Enable QualityOfLife packages";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Conditionally import other Nix files based on the options
|
||||||
|
imports =
|
||||||
|
# Import core zsh settings if 'enable' is true
|
||||||
|
(lib.lists.optionals cfg.enable [ (mkPath "zsh.nix") ])
|
||||||
|
|
||||||
|
# Import packages if 'extraPackages' is true
|
||||||
|
++ (lib.lists.optionals cfg.extraPackages [ (mkPath "packages.nix") ])
|
||||||
|
|
||||||
|
# Add more conditional imports here based on other options
|
||||||
|
# ++ (lib.lists.optionals cfg.keybindings [ (mkPath "keybindings.nix") ])
|
||||||
|
# ++ (lib.lists.optionals cfg.plugins [ (mkPath "plugins.nix") ])
|
||||||
|
;
|
||||||
|
|
||||||
|
# Base configuration that might always apply or depend on 'enable'
|
||||||
|
config = lib.mkMerge [
|
||||||
|
# (lib.mkIf cfg.enable {
|
||||||
|
# programs.zsh.enable = true;
|
||||||
|
# })
|
||||||
|
];
|
||||||
|
}
|
6
modules/git.nix
Normal file
6
modules/git.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
gh
|
||||||
|
tea
|
||||||
|
];
|
||||||
|
}
|
22
modules/kubernetes.nix
Normal file
22
modules/kubernetes.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
services.podman.enable = true;
|
||||||
|
|
||||||
|
home.file.minikube = {
|
||||||
|
enable = true;
|
||||||
|
target = ".minikube/config/config.json";
|
||||||
|
text = ''
|
||||||
|
{
|
||||||
|
"container-runtime": "containerd",
|
||||||
|
"driver": "podman",
|
||||||
|
"rootless": true
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
minikube
|
||||||
|
kubectl
|
||||||
|
kubectx
|
||||||
|
k9s
|
||||||
|
];
|
||||||
|
}
|
7
modules/netTools.nix
Normal file
7
modules/netTools.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
lsof
|
||||||
|
inetutils
|
||||||
|
iputils
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,12 +1,21 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# asciinema
|
# asciinema
|
||||||
asciinema # Terminal recording
|
asciinema_3 # Terminal recording
|
||||||
asciinema-agg # Convert asciinema recordings
|
asciinema-agg # Convert asciinema recordings
|
||||||
libnotify # Notifications
|
libnotify # Notifications
|
||||||
websocat # For asciinema v2 streams
|
|
||||||
# ^ asciinema
|
# ^ asciinema
|
||||||
|
|
||||||
|
curl
|
||||||
|
|
||||||
|
# parsing
|
||||||
|
gawk
|
||||||
|
jq
|
||||||
|
yq
|
||||||
|
# ^ parsing
|
||||||
|
|
||||||
|
python3
|
||||||
|
|
||||||
# useful dev/everyday tools
|
# useful dev/everyday tools
|
||||||
encfs
|
encfs
|
||||||
file
|
file
|
|
@ -147,7 +147,7 @@
|
||||||
|
|
||||||
localVariables = {
|
localVariables = {
|
||||||
YSU_MESSAGE_POSITION = "after";
|
YSU_MESSAGE_POSITION = "after";
|
||||||
ASCIINEMA_API_URL = "https://asciinema.stefka.eu";
|
# ASCIINEMA_API_URL = "https://asciinema.stefka.eu";
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
@ -218,7 +218,7 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
nix-zsh-completions
|
nix-zsh-completions
|
||||||
|
|
||||||
python312Packages.pygments # For antidote
|
python3Packages.pygments # For antidote
|
||||||
|
|
||||||
# tools for aliases, etc.
|
# tools for aliases, etc.
|
||||||
lsd
|
lsd
|
Loading…
Add table
Add a link
Reference in a new issue