more config updates
This commit is contained in:
parent
8659535e96
commit
25078ab6d4
6 changed files with 24 additions and 6 deletions
|
@ -19,6 +19,10 @@
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
# Virtualization because I need mah vr back
|
||||||
|
virtualisation.libvirtd.enable = true;
|
||||||
|
programs.virt-manager.enable = true;
|
||||||
|
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -36,6 +40,7 @@
|
||||||
cmp_luasnip
|
cmp_luasnip
|
||||||
tokyonight-nvim
|
tokyonight-nvim
|
||||||
vim-lsp-cxx-highlight
|
vim-lsp-cxx-highlight
|
||||||
|
typst-vim
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
peers = [{
|
peers = [{
|
||||||
publicKey = "atXy3zi3FLoxP8hgzJIIeLGks4Te9HrKkQGoaobholM=";
|
publicKey = "atXy3zi3FLoxP8hgzJIIeLGks4Te9HrKkQGoaobholM=";
|
||||||
presharedKeyFile = "/etc/nixos/hosts/gemini/wg.psk";
|
presharedKeyFile = "/etc/nixos/hosts/gemini/wg.psk";
|
||||||
allowedIPs = [ "10.100.0.0/24" ];
|
allowedIPs = [ "10.100.0.0/24" ];
|
||||||
endpoint = "moms.wireguard.stitchy.moe:47111";
|
endpoint = "moms.wireguard.stitchy.moe:47111";
|
||||||
persistentKeepalive = 25;
|
persistentKeepalive = 25;
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
system.nixos.tags = [ "Nya_Beginnings" ];
|
system.nixos.tags = [ "Nya_Beginnings" ];
|
||||||
|
|
||||||
|
services.logind.powerKey = "ignore";
|
||||||
|
services.logind.powerKeyLongPress = "poweroff";
|
||||||
services.resolved = {
|
services.resolved = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dnsovertls = "opportunistic";
|
dnsovertls = "opportunistic";
|
||||||
|
@ -67,7 +69,7 @@
|
||||||
CPU_MIN_PERF_ON_AC = 0;
|
CPU_MIN_PERF_ON_AC = 0;
|
||||||
CPU_MAX_PERF_ON_AC = 100;
|
CPU_MAX_PERF_ON_AC = 100;
|
||||||
CPU_MIN_PERF_ON_BAT = 0;
|
CPU_MIN_PERF_ON_BAT = 0;
|
||||||
CPU_MAX_PERF_ON_BAT = 30;
|
CPU_MAX_PERF_ON_BAT = 50;
|
||||||
|
|
||||||
#Optional helps save long term battery health
|
#Optional helps save long term battery health
|
||||||
START_CHARGE_THRESH_BAT0 = 40; # 40 and bellow it starts to charge
|
START_CHARGE_THRESH_BAT0 = 40; # 40 and bellow it starts to charge
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
vimPlugins.tokyonight-nvim
|
vimPlugins.tokyonight-nvim
|
||||||
# temporary home manager things
|
# temporary home manager things
|
||||||
inotify-tools
|
inotify-tools
|
||||||
eww-wayland
|
eww
|
||||||
jq
|
jq
|
||||||
socat
|
socat
|
||||||
libimobiledevice
|
libimobiledevice
|
||||||
|
@ -46,6 +46,7 @@
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
liberation_ttf
|
liberation_ttf
|
||||||
nerdfonts
|
nerdfonts
|
||||||
|
ipafont
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
home = "/home/stitchynyan";
|
home = "/home/stitchynyan";
|
||||||
description = "Personal user";
|
description = "Personal user";
|
||||||
extraGroups = [ "wheel" "networkmanager" "kvm" "libvirt" "audio" ];
|
extraGroups = [ "wheel" "networkmanager" "kvm" "libvirtd" "audio" ];
|
||||||
initialHashedPassword = "$y$j9T$rvySCWHYE4AO4A9J0Vf20.$x5hpBNsOWovQFtNfFUIt17OAH5MJFwFBGjxbaEIagJ3";
|
initialHashedPassword = "$y$j9T$rvySCWHYE4AO4A9J0Vf20.$x5hpBNsOWovQFtNfFUIt17OAH5MJFwFBGjxbaEIagJ3";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
{ config,
|
{ config,
|
||||||
nixosConfig,
|
nixosConfig,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
inputs,
|
inputs,
|
||||||
home-manager,
|
home-manager,
|
||||||
... }:
|
... }:
|
||||||
|
@ -54,13 +55,22 @@
|
||||||
qt5ct
|
qt5ct
|
||||||
qt6ct
|
qt6ct
|
||||||
mpv
|
mpv
|
||||||
python311Packages.sympy
|
|
||||||
python311Packages.matplotlib
|
|
||||||
#steamvr?
|
#steamvr?
|
||||||
procps
|
procps
|
||||||
usbutils
|
usbutils
|
||||||
|
(python311.withPackages (lib.attrVals ["sympy" "matplotlib"]))
|
||||||
|
(octaveFull.withPackages (lib.attrVals ["symbolic"]))
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
dconf.settings = {
|
||||||
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
|
autoconnect = ["qemu:///system"];
|
||||||
|
uris = ["qemu:///system"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
FOO = "BAR";
|
FOO = "BAR";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue