desktop-2025-01-10-08-26-55

This commit is contained in:
Alexander Szczepanski
2025-01-10 08:26:55 +01:00
parent 2400313d72
commit ebfe4861e2
5 changed files with 13 additions and 15 deletions

View File

@ -21,7 +21,7 @@ creation_rules:
- *nixos-virtualbox - *nixos-virtualbox
- *nixos-vm - *nixos-vm
- *thinkpad - *thinkpad
- path_regex: secrets-desktop.y`aml$ - path_regex: secrets-desktop.yaml$
key_groups: key_groups:
- age: - age:
- *alex - *alex

View File

@ -62,4 +62,4 @@
options = ["fmask=0022" "dmask=0022"]; options = ["fmask=0022" "dmask=0022"];
}; };
}; };
}; }

View File

@ -52,7 +52,7 @@
kdiskmark kdiskmark
maliit-keyboard maliit-keyboard
deskflow # deskflow
]; ];
persistence."/persist" = { persistence."/persist" = {

View File

@ -90,13 +90,15 @@ in {
serverAliveInterval = 60; serverAliveInterval = 60;
forwardAgent = true; forwardAgent = true;
matchBlocks."szczepan.ski" = {hostname = "szczepan.ski";}; matchBlocks = {
matchBlocks."mini" = {hostname = "mini";}; "szczepan.ski" = {hostname = "szczepan.ski";};
matchBlocks."desktop" = {hostname = "desktop";}; "mini" = {hostname = "mini";};
matchBlocks."framework" = {hostname = "framework";}; "desktop" = {hostname = "desktop";};
matchBlocks."nixos-vm" = { "framework" = {hostname = "framework";};
hostname = "127.0.0.1"; "nixos-vm" = {
port = 1337; hostname = "127.0.0.1";
port = 1337;
};
}; };
}; };

View File

@ -46,7 +46,6 @@ in {
"big-parallel" "big-parallel"
"kvm" "kvm"
"gccarch-znver3" "gccarch-znver3"
# "gccarch-x86-64-v3"
]; ];
max-jobs = 4; max-jobs = 4;
@ -66,7 +65,6 @@ in {
kernelParams = ["clearcpuid=514" "ip=dhcp"]; kernelParams = ["clearcpuid=514" "ip=dhcp"];
kernelModules = ["nct6775"]; kernelModules = ["nct6775"];
kernel.sysctl = { kernel.sysctl = {
"vm.max_map_count" = 262144;
"vm.nr_hugepages" = 1280; "vm.nr_hugepages" = 1280;
}; };
extraModulePackages = with pkgs.linuxPackages_cachyos; [ryzen-smu]; extraModulePackages = with pkgs.linuxPackages_cachyos; [ryzen-smu];
@ -74,7 +72,7 @@ in {
availableKernelModules = ["r8169"]; availableKernelModules = ["r8169"];
systemd.users.root.shell = "/bin/cryptsetup-askpass"; systemd.users.root.shell = "/bin/cryptsetup-askpass";
network = { network = {
enable = true;z enable = true;
ssh = { ssh = {
enable = true; enable = true;
port = 22; port = 22;
@ -166,8 +164,6 @@ in {
# cpu.x86.msr = { # cpu.x86.msr = {
# enable = true; # enable = true;
# }; # };
pulseaudio.enable = false;
}; };
# powerManagement = { # powerManagement = {