yggdrasil: small changes

This commit is contained in:
Christoph Hollizeck 2026-02-14 18:04:40 +01:00
parent 9e56e41ce6
commit ffd8d0fed3
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
5 changed files with 12 additions and 5 deletions

View file

@ -63,7 +63,9 @@
defaultSopsFormat = "yaml";
age = {
sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sshKeyPaths = [
"/etc/ssh/ssh_host_ed25519_key"
];
keyFile = lib.mkIf (
config.networking.hostName == "yggdrasil"
) "/home/cholli/.config/sops/age/keys.txt";

View file

@ -64,7 +64,8 @@
hyprland = {
enable = true;
package = hyprland-package;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
portalPackage =
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
withUWSM = true;
};
};
@ -144,9 +145,9 @@
"[workspace 7 silent] obsidian"
"[workspace 8 silent] discord"
"[workspace 9 silent] ELECTRON_OZONE_PLATFORM_HINT=x11 1password" # fix for promts not showing up anymore
"${pkgs.xorg.xhost}/bin/xhost +"
"${pkgs.xhost}/bin/xhost +"
"${lib.getExe pkgs.xorg.xrandr} --output DP-1 --primary"
"${lib.getExe pkgs.xrandr} --output DP-1 --primary"
];
windowrulev2 = [

View file

@ -82,7 +82,7 @@ topLevel: {
};
fileSystems."/mnt/pi_share" = {
device = "cholli@192.168.178.2:/storage/";
device = "cholli@192.168.178.2:/storage/cholli/";
fsType = "sshfs";
options = [

View file

@ -17,6 +17,8 @@
trim.enable = true;
};
fileSystems."/home".neededForBoot = true;
disko.devices = {
disk = {
x = {

View file

@ -14,6 +14,8 @@
extraModulePackages = with config.boot.kernelPackages; [ r8125 ];
blacklistedKernelModules = [ "r8169" ];
kernelParams = [ "split_lock_detect=off" ];
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;