mirror of https://codeberg.org/anemofilia/zero
operating-systems: buer: Fix weird behavior regarding cpu threads
parent
2e9b47edc8
commit
1a3f8c84a9
|
@ -99,7 +99,13 @@
|
||||||
(kernel-arguments
|
(kernel-arguments
|
||||||
(cons* "modprobe.blacklist=usbmouse,usbkbd,pcspkr"
|
(cons* "modprobe.blacklist=usbmouse,usbkbd,pcspkr"
|
||||||
"thinkpad_acpi.fan_control=1"
|
"thinkpad_acpi.fan_control=1"
|
||||||
(filter (negate (partial string-prefix? "debugfs"))
|
(filter (apply conjoin
|
||||||
|
(map (negate (partial partial string-prefix?))
|
||||||
|
(list "debugfs"
|
||||||
|
"l1tf"
|
||||||
|
"mds"
|
||||||
|
"mitigations"
|
||||||
|
"nosmt")))
|
||||||
%kicksecure-kernel-arguments)))
|
%kicksecure-kernel-arguments)))
|
||||||
|
|
||||||
(file-systems
|
(file-systems
|
||||||
|
@ -311,11 +317,7 @@
|
||||||
#|Doas configuration services|#
|
#|Doas configuration services|#
|
||||||
(simple-service 'miscellaneous-permissions doas-service-type
|
(simple-service 'miscellaneous-permissions doas-service-type
|
||||||
(list (permit (identity ":wheel")
|
(list (permit (identity ":wheel")
|
||||||
(setenv `(("GUILE_LOAD_PATH" . #t))))
|
(setenv `(("GUILE_LOAD_PATH" . #t))))))
|
||||||
(permit (identity ":wheel")
|
|
||||||
(setenv `(("GUILE_LOAD_PATH" . #t)
|
|
||||||
("PATH" . #t)))
|
|
||||||
(command "guix"))))
|
|
||||||
(simple-service 'text-editors-permissions doas-service-type
|
(simple-service 'text-editors-permissions doas-service-type
|
||||||
(map (lambda (cmd)
|
(map (lambda (cmd)
|
||||||
(permit (identity ":wheel")
|
(permit (identity ":wheel")
|
||||||
|
|
Loading…
Reference in New Issue