mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
Initial commit
This commit is contained in:
8
programs/bitwarden.nix
Normal file
8
programs/bitwarden.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
enable = true;
|
||||
settings = {
|
||||
base_url = "pw.theaninova.de";
|
||||
email = "pw@theaninova.de";
|
||||
pinentry = "gnome3";
|
||||
};
|
||||
}
|
||||
9
programs/git.nix
Normal file
9
programs/git.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
enable = true;
|
||||
userName = "Thea Schöbl";
|
||||
userEmail = "dev@theaninova.de";
|
||||
signing = {
|
||||
key = "6C9E EFC5 1AE0 0131 78DE B9C8 68FF FB1E C187 88CA";
|
||||
signByDefault = true;
|
||||
};
|
||||
}
|
||||
38
programs/zsh.nix
Normal file
38
programs/zsh.nix
Normal file
@@ -0,0 +1,38 @@
|
||||
{ pkgs }:
|
||||
{
|
||||
enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" "docker" "zsh-interactive-cd" ];
|
||||
theme = "amuse";
|
||||
};
|
||||
plugins = [
|
||||
{
|
||||
name = "zsh-autosuggestions";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "zsh-users";
|
||||
repo = "zsh-autosuggestions";
|
||||
rev = "v0.7.0";
|
||||
sha256 = "sha256-KLUYpUu4DHRumQZ3w59m9aTW6TBKMCXl2UcKi4uMd7w=";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "shellfirm";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "kaplanelad";
|
||||
repo = "shellfirm";
|
||||
rev = "v0.2.7";
|
||||
sha256 = "sha256-rUK5YoXpjAdxJhoYIf5yNtUGDGnAXCDIkPrgm4QI2jc=";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "zsh-syntax-highlighting";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "zsh-users";
|
||||
repo = "zsh-syntax-highlighting";
|
||||
rev = "0.7.1";
|
||||
sha256 = "sha256-gOG0NLlaJfotJfs+SUhGgLTNOnGLjoqnUp54V9aFJg8=";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user