forked from fabian/nix_config
updates post explanation fatberoo
This commit is contained in:
parent
82f58738ad
commit
62cd093202
17 changed files with 17 additions and 178 deletions
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.services.accounts;
|
||||
in {
|
||||
options.local.services.accounts.enable = mkEnableOption "accounts settings";
|
||||
config = mkIf cfg.enable {
|
||||
accounts.email.accounts = {
|
||||
"josescalante9808@gmail.com" = {
|
||||
address = "josescalante9808@gmail..com";
|
||||
userName = "josescalante9808";
|
||||
realName = "josem";
|
||||
primary = true;
|
||||
flavor = "gmail.com";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -33,7 +33,7 @@ in {
|
|||
vim
|
||||
zip
|
||||
];
|
||||
keyboard = {
|
||||
keyboard = { #TODO switch to normal people variant
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.services.deepState;
|
||||
in {
|
||||
options.local.services.deepState.enable = mkEnableOption "trivionomicon settings";
|
||||
config = mkIf cfg.enable {
|
||||
home.sessionVariables = {
|
||||
FSOCIETY_TELEGRAM_BACKUP_N = "0";
|
||||
FSOCIETY_TELEGRAM_BACKUP_LOCATION = "/extern/var/fsociety_backup";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -22,13 +22,10 @@ in {
|
|||
pavucontrol
|
||||
pdfarranger
|
||||
qpdfview
|
||||
runelite
|
||||
spotify
|
||||
tdesktop
|
||||
usbutils
|
||||
vpsfree-client
|
||||
vscodium-fhs
|
||||
zola
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,10 +11,10 @@ in {
|
|||
enable = mkEnableOption "gaming apps";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [
|
||||
pkgs.lutris
|
||||
pkgs.openrct2
|
||||
pkgs.prismlauncher
|
||||
home.packages = with pkgs; [
|
||||
lutris
|
||||
openrct2
|
||||
prismlauncher
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ in {
|
|||
input = {
|
||||
"*" = {
|
||||
xkb_layout = "us";
|
||||
xkb_variant = "altgr-intl";
|
||||
xkb_variant = "altgr-intl"; #TODO change to normal ppl keeb too
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ in {
|
|||
icon-size = 12;
|
||||
};
|
||||
};
|
||||
};
|
||||
}; #TODO font negro n shit
|
||||
style = ''
|
||||
* {
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.services.syncthing;
|
||||
in {
|
||||
options.local.services.syncthing = {
|
||||
enable = mkEnableOption "syncthing settings";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
tray.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -5,7 +5,7 @@
|
|||
italic_font JetBrains Mono Italic
|
||||
bold_italic_font JetBrains Mono Bold Italic
|
||||
|
||||
font_size 15
|
||||
font_size 10
|
||||
disable_ligatures cursor
|
||||
|
||||
initial_window_width 1200
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.apps.yubikey;
|
||||
in {
|
||||
options.local.apps.yubikey = {
|
||||
enable = mkEnableOption "Yubikey home settings";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
yubikey-manager
|
||||
yubico-pam
|
||||
yubikey-personalization
|
||||
];
|
||||
};
|
||||
}
|
|
@ -78,14 +78,12 @@
|
|||
alias ls='ls --color -F'
|
||||
alias l='ls --color -FhAltr'
|
||||
alias x='killall --ignore-case --user=$(whoami) --interactive'
|
||||
alias sc='${lib.getExe pkgs.maim} -s -u | ${lib.getExe pkgs.xclip} -selection clipboard -t image/png -i'
|
||||
alias tree='tree -CF'
|
||||
alias lock="betterlockscreen -l"
|
||||
alias nightmode="${lib.getExe pkgs.redshift} -P -O 1000"
|
||||
alias lightmode="${lib.getExe pkgs.redshift} -x="
|
||||
alias inbox="echo >> $HOME/gtd/inbox"
|
||||
alias nixoide="nix repl '<nixpkgs>'"
|
||||
alias vps="ssh -A vps"
|
||||
alias vim=nvim
|
||||
bindkey -e
|
||||
bindkey "^[[1;5D" backward-word
|
||||
bindkey "^[[1;5C" forward-word
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue