This commit is contained in:
Vivian 2022-09-29 21:14:34 +02:00
parent 7eb07ac622
commit b4212470b1
2 changed files with 17 additions and 9 deletions

View file

@ -420,11 +420,11 @@
"utils": "utils_3" "utils": "utils_3"
}, },
"locked": { "locked": {
"lastModified": 1664286632, "lastModified": 1664449551,
"narHash": "sha256-fKENvLanhmBENlIbmDAVB8SKSbwdLLBYKu6B7oJ0rLc=", "narHash": "sha256-iTStJtZB1+MppkT+95Ckqy2NDaISb+QcUkOAa0DS0io=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6dc8a43f397c92afbc3f771385ac803d96d5eeb5", "rev": "864ff685fe6443101a0a8f3950d21bcb4330e56a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -439,11 +439,11 @@
"wlroots": "wlroots" "wlroots": "wlroots"
}, },
"locked": { "locked": {
"lastModified": 1664389693, "lastModified": 1664477193,
"narHash": "sha256-M8eCiod9GvH4WkgC/EEPwu7XVMt2upFwn4y2ycoBEYg=", "narHash": "sha256-W8pe+3wrAUjtexyd6ve4qZGLOWzfqqXKyieY3Q3ntsY=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "31cb4c49d9f977d4cb0876cf1124bf9e86a60669", "rev": "da40bf823f2f307e439f4bd85c405d9e612c2df5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -698,11 +698,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1664359465, "lastModified": 1664477516,
"narHash": "sha256-Bx1bjo3d77UqoheOeLbbBOyPvuNLedEkgTx3nDO2QJE=", "narHash": "sha256-kdOex16l/HV0zDFXLcR1ksjQlZDaCZt8a7EXMybuirM=",
"owner": "NULLx76", "owner": "NULLx76",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "43377d2818041a0e40ac769b3d8897c2c74ba816", "rev": "dddab957d2cdae5a11b3104e5eaec28995ef2ebf",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -14,6 +14,14 @@
# Set your time zone. # Set your time zone.
time.timeZone = lib.mkDefault "Europe/Amsterdam"; time.timeZone = lib.mkDefault "Europe/Amsterdam";
# Systemd OOMd
# Fedora enables these options by default. See the 10-oomd-* files here:
# https://src.fedoraproject.org/rpms/systemd/tree/acb90c49c42276b06375a66c73673ac3510255
systemd.oomd = {
enableRootSlice = true;
enableUserServices = true;
};
# Nix Settings # Nix Settings
nix = { nix = {
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];