kcnhub: mish mash?
parent
76439d8ee3
commit
ecaf300b88
|
|
@ -20,10 +20,11 @@
|
||||||
./nosleep.nix
|
./nosleep.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
sops.age.keyFile = "/root/.config/sops/age/keys.txt";
|
sops.age.keyFile = "/root/.config/sops/age/keys.txt";
|
||||||
sops.defaultSopsFile = ./secrets/system.yaml;
|
sops.defaultSopsFile = ./secrets/system.yaml;
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
# networking.networkmanager.enable = true;
|
||||||
|
|
||||||
# Support NTFS(3g)
|
# Support NTFS(3g)
|
||||||
boot.supportedFilesystems = ["ntfs"];
|
boot.supportedFilesystems = ["ntfs"];
|
||||||
|
|
@ -44,6 +45,28 @@
|
||||||
# Enable the X11 forwarding over ssh
|
# Enable the X11 forwarding over ssh
|
||||||
programs.ssh.forwardX11 = true;
|
programs.ssh.forwardX11 = true;
|
||||||
programs.ssh.setXAuthLocation = true;
|
programs.ssh.setXAuthLocation = true;
|
||||||
|
environment.etc."vnc/xstartup-minimal".mode = "0755";
|
||||||
|
environment.etc."vnc/xstartup-plasma".mode = "0755";
|
||||||
|
environment.etc."vnc/xstartup-xfce".mode = "0755";
|
||||||
|
|
||||||
|
# trying to install matlab runtime
|
||||||
|
programs.nix-ld = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.nix-ld;
|
||||||
|
libraries = with pkgs; [
|
||||||
|
glibc
|
||||||
|
gcc.cc.lib
|
||||||
|
zlib
|
||||||
|
pam
|
||||||
|
libuuid
|
||||||
|
libxcrypt
|
||||||
|
openssl
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXrender
|
||||||
|
xorg.libXtst
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# Enable KDE Plasma
|
# Enable KDE Plasma
|
||||||
services.xserver.displayManager.sddm.enable = true;
|
services.xserver.displayManager.sddm.enable = true;
|
||||||
|
|
@ -83,6 +106,8 @@
|
||||||
sops
|
sops
|
||||||
# Used for Key Generation
|
# Used for Key Generation
|
||||||
age
|
age
|
||||||
|
# Needed to install claude code (do not touch)
|
||||||
|
unstable-unfree.claude-code
|
||||||
|
|
||||||
|
|
||||||
# To try to make X11 forwarding work we install xauth
|
# To try to make X11 forwarding work we install xauth
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue