import configs
This commit is contained in:
@@ -63,126 +63,10 @@
|
|||||||
};
|
};
|
||||||
home-manager.users.alex = { pgks, ...}: {
|
home-manager.users.alex = { pgks, ...}: {
|
||||||
home.stateVersion = "24.11";
|
home.stateVersion = "24.11";
|
||||||
home.packages = with pkgs; [
|
imports = [
|
||||||
k9s
|
./home-manager/alex.home.nix
|
||||||
jwt-cli
|
./home-manager/desktop.home.nix
|
||||||
thefuck
|
|
||||||
fish
|
|
||||||
kubectl
|
|
||||||
lazydocker
|
|
||||||
btop
|
|
||||||
nix-index
|
|
||||||
usbutils
|
|
||||||
makemkv
|
|
||||||
mbuffer
|
|
||||||
lzop
|
|
||||||
lsof
|
|
||||||
code-server
|
|
||||||
vscode-fhs
|
|
||||||
gnome-software
|
|
||||||
gnome-tweaks
|
|
||||||
(pkgs.nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
|
|
||||||
nvtopPackages.nvidia
|
|
||||||
htop
|
|
||||||
dotnetCorePackages.dotnet_9.sdk
|
|
||||||
];
|
];
|
||||||
fonts.fontconfig.enable = true;
|
|
||||||
|
|
||||||
dconf.enable = true;
|
|
||||||
dconf.settings = {
|
|
||||||
"org/gnome/desktop/interface" = {
|
|
||||||
color-scheme = "prefer-dark";
|
|
||||||
};
|
|
||||||
"org/gnome/desktop/wm/keybindings" = {
|
|
||||||
toggle-maximized=["<Super>m"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
gtk = {
|
|
||||||
enable = true;
|
|
||||||
theme = {
|
|
||||||
name = "Adwaita-dark";
|
|
||||||
package = pkgs.gnome-themes-extra;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
programs.fish = {
|
|
||||||
enable = true;
|
|
||||||
shellInit = ''
|
|
||||||
function commit
|
|
||||||
git add --all
|
|
||||||
git commit -m "$argv"
|
|
||||||
git push
|
|
||||||
end
|
|
||||||
|
|
||||||
# have ctrl+backspace delete previous word
|
|
||||||
bind \e\[3\;5~ kill-word
|
|
||||||
# have ctrl+delete delete following word
|
|
||||||
bind \b backward-kill-word
|
|
||||||
|
|
||||||
set -U fish_user_paths ~/.local/bin $fish_user_paths
|
|
||||||
#set -U fish_user_paths ~/.dotnet $fish_user_paths
|
|
||||||
#set -U fish_user_paths ~/.dotnet/tools $fish_user_paths
|
|
||||||
|
|
||||||
export VISUAL=vim
|
|
||||||
export EDITOR="$VISUAL"
|
|
||||||
export DOTNET_WATCH_RESTART_ON_RUDE_EDIT=1
|
|
||||||
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
||||||
set -x LIBVIRT_DEFAULT_URI qemu:///system
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
home.file = {
|
|
||||||
".config/lazydocker/config.yml".text = ''
|
|
||||||
gui:
|
|
||||||
returnImmediately: true
|
|
||||||
'';
|
|
||||||
".config/k9s/config.yaml".text = ''
|
|
||||||
k9s:
|
|
||||||
liveViewAutoRefresh: true
|
|
||||||
screenDumpDir: /home/alexm/.local/state/k9s/screen-dumps
|
|
||||||
refreshRate: 2
|
|
||||||
maxConnRetry: 5
|
|
||||||
readOnly: false
|
|
||||||
noExitOnCtrlC: false
|
|
||||||
ui:
|
|
||||||
enableMouse: false
|
|
||||||
headless: false
|
|
||||||
logoless: false
|
|
||||||
crumbsless: false
|
|
||||||
reactive: false
|
|
||||||
noIcons: false
|
|
||||||
defaultsToFullScreen: false
|
|
||||||
skipLatestRevCheck: false
|
|
||||||
disablePodCounting: false
|
|
||||||
shellPod:
|
|
||||||
image: busybox:1.35.0
|
|
||||||
namespace: default
|
|
||||||
limits:
|
|
||||||
cpu: 100m
|
|
||||||
memory: 100Mi
|
|
||||||
imageScans:
|
|
||||||
enable: false
|
|
||||||
exclusions:
|
|
||||||
namespaces: []
|
|
||||||
labels: {}
|
|
||||||
logger:
|
|
||||||
tail: 1000
|
|
||||||
buffer: 5000
|
|
||||||
sinceSeconds: -1
|
|
||||||
textWrap: false
|
|
||||||
showTime: false
|
|
||||||
thresholds:
|
|
||||||
cpu:
|
|
||||||
critical: 90
|
|
||||||
warn: 70
|
|
||||||
memory:
|
|
||||||
critical: 90
|
|
||||||
warn: 70
|
|
||||||
namespace:
|
|
||||||
lockFavorites: false
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
home.sessionVariables = {
|
|
||||||
EDITOR = "vim";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.backupFileExtension = "backup";
|
home-manager.backupFileExtension = "backup";
|
||||||
|
|||||||
Reference in New Issue
Block a user