added alot

This commit is contained in:
Robin
2026-03-21 19:18:13 +01:00
parent 532cf4542e
commit bea73aac6b
21 changed files with 129 additions and 1030 deletions

48
.config/home-manager/flake.lock generated Normal file
View File

@@ -0,0 +1,48 @@
{
"nodes": {
"home-manager": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1764534535,
"narHash": "sha256-TkAB7JTfQXq8wpBcCZ8cH/Dlkd/96J0VjFKqwhKl7kI=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "784a83782ce00985bee65c588d4c315ec0b5a172",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1764242076,
"narHash": "sha256-sKoIWfnijJ0+9e4wRvIgm/HgE27bzwQxcEmo2J/gNpI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2fad6eac6077f03fe109c4d4eb171cf96791faa4",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"home-manager": "home-manager",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@@ -2,19 +2,19 @@
user = "robin";
programs.git = {
enable = true;
userName = "robin"
userEmail = "robin@mail.com"
userName = "robin";
userEmail = "robin@mail.com";
aliases = {
pu = "push";
co = "checkout";
cm = "commit";
}
};
};
gtk = {
enable = true;
theme.name = "catppuccin-frappe-pink-compact"
cursorTheme.name = "Bibata-Modern-Classic"
iconTheme.name = "Colloid-Dark"
theme.name = "catppuccin-frappe-pink-compact";
cursorTheme.name = "Bibata-Modern-Classic";
iconTheme.name = "Colloid-Dark";
};
programs.zsh = {
enable = true;
@@ -25,15 +25,15 @@
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
alias vim="nvim";
alias cls="clear";
alias femboy="echo '$USER is a femboy'";
alias shut="shutdown now";
alias re="reboot";
alias ls="exa";
alias switchhack="fusee-nano ~/Downloads/switchhack/hekate_ctcaer_6.3.0.bin";
alias ssh_t='(){ ssh $1 -t tmux;}';
alias sshserver="ssh -i ~/.ssh/GlaServer00 glala@81.21.121.109";
alias vim = "nvim";
alias cls = "clear";
alias femboy = "echo '$USER is a femboy'";
alias shut = "shutdown now";
alias re = "reboot";
alias ls = "exa";
alias switchhack = "fusee-nano ~/Downloads/switchhack/hekate_ctcaer_6.3.0.bin";
alias ssh_t = '(){ ssh $1 -t tmux;}';
alias sshserver = "ssh -i ~/.ssh/GlaServer00 glala@81.21.121.109";
};
history.size = 10000;
};