sync
This commit is contained in:
@@ -6,7 +6,6 @@
|
||||
homeDirectory = "/home/autumn";
|
||||
stateVersion = "25.11";
|
||||
packages = with pkgs; [
|
||||
avizo
|
||||
eza
|
||||
fm
|
||||
felix
|
||||
@@ -14,11 +13,6 @@
|
||||
htop
|
||||
nerd-fonts.hack
|
||||
neofetch
|
||||
obsidian
|
||||
swaybg
|
||||
tiramisu
|
||||
vscodium-fhs
|
||||
vesktop
|
||||
uv
|
||||
wev
|
||||
];
|
||||
@@ -26,19 +20,14 @@
|
||||
EDITOR = "helix";
|
||||
TERM = "alacritty";
|
||||
};
|
||||
file = {
|
||||
"config.ini" = {
|
||||
enable = true;
|
||||
source = ../packages/avizo/config.ini;
|
||||
target = ".config/avizo/config.ini";
|
||||
};
|
||||
};
|
||||
};
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
htop.enable = true;
|
||||
bash.initExtra= ''fish'';
|
||||
pls = {enable = true;enableFishIntegration = true;};
|
||||
pls = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
};
|
||||
nixpkgs.config = {
|
||||
alowUnfree = true;
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
{config, pkgs, ...}:
|
||||
{
|
||||
home.packags = with pkgs; [
|
||||
obsidian
|
||||
vscodium-fhs
|
||||
vesktop
|
||||
];
|
||||
imports = [
|
||||
../../packages/fish/fish.nix
|
||||
];
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
programs.bash.initExtra= ''zsh'';
|
||||
imports = [
|
||||
../../packages/zsh/zsh.nix
|
||||
../../packages/zellij/zellij.nix
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
{config, pkgs, ...}:
|
||||
{
|
||||
home.packags = with pkgs; [
|
||||
obsidian
|
||||
vscodium-fhs
|
||||
vesktop
|
||||
];
|
||||
programs.bash.initExtra= ''fish'';
|
||||
home.file = {
|
||||
"config.ini" = {
|
||||
enable = true;
|
||||
source = ../packages/avizo/config.ini;
|
||||
target = ".config/avizo/config.ini";
|
||||
};
|
||||
};
|
||||
imports = [
|
||||
../../packages/fish/fish.nix
|
||||
../../packages/river/river.nix
|
||||
|
||||
@@ -6,31 +6,47 @@
|
||||
oh-my-zsh
|
||||
];
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
antidote = {
|
||||
programs ={
|
||||
zsh = {
|
||||
enable = true;
|
||||
# plugins = [
|
||||
# "colored-man-pages"
|
||||
# "colorize"
|
||||
# "cp"
|
||||
# "history"
|
||||
# "ssh-agent"
|
||||
# "zoxide"
|
||||
# ];
|
||||
useFriendlyNames = true;
|
||||
};
|
||||
autosuggestion = {
|
||||
enable = true;
|
||||
};
|
||||
shellAliases = {
|
||||
".." = "cd ..";
|
||||
"..." = "cd ../..";
|
||||
"...." = "cd ../../..";
|
||||
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
|
||||
"z" = "zoxide";
|
||||
antidote = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
"zsh-users/zsh-autosuggestions"
|
||||
"zsh-users/zsh-syntax-highlighting"
|
||||
# "colored-man-pages"
|
||||
# "colorize"
|
||||
# "cp"
|
||||
# "history"
|
||||
# "ssh-agent"
|
||||
# "zoxide"
|
||||
];
|
||||
useFriendlyNames = true;
|
||||
};
|
||||
autosuggestion = {
|
||||
enable = true;
|
||||
};
|
||||
shellAliases = {
|
||||
".." = "cd ..";
|
||||
"..." = "cd ../..";
|
||||
"...." = "cd ../../..";
|
||||
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
|
||||
"z" = "zoxide";
|
||||
};
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
"git"
|
||||
"sudo"
|
||||
"colored-man-pages"
|
||||
"colorize"
|
||||
"cp"
|
||||
"zoxide"
|
||||
"ssh-agent"
|
||||
"command-not-found"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -92,20 +92,6 @@
|
||||
};
|
||||
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
# nix.settings.download-buffer-size = 5242880000;
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
# programs.gnupg.agent = {
|
||||
# enable = true;
|
||||
# enableSSHSupport = true;
|
||||
# };
|
||||
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user