yggdrasil: small changes
This commit is contained in:
parent
9e56e41ce6
commit
ffd8d0fed3
5 changed files with 12 additions and 5 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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 = [
|
||||
|
|
|
|||
|
|
@ -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 = [
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@
|
|||
trim.enable = true;
|
||||
};
|
||||
|
||||
fileSystems."/home".neededForBoot = true;
|
||||
|
||||
disko.devices = {
|
||||
disk = {
|
||||
x = {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue