summary refs log tree commit diff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-rw-r--r--profiles/core.nix11
-rw-r--r--profiles/graphical.nix9
2 files changed, 20 insertions, 0 deletions
diff --git a/profiles/core.nix b/profiles/core.nix
index 5f29653..f81ead8 100644
--- a/profiles/core.nix
+++ b/profiles/core.nix
@@ -32,5 +32,16 @@
 
     # save uid/guid
     environment.persistence."/nix/persist".directories = ["/var/lib/nixos"];
+
+    boot = {
+      tmp.cleanOnBoot = true;
+      kernelParams = [
+        "init_on_free=1"
+        "page_poison=1"
+        "page_alloc.shuffle=1"
+        "slab_nomerge"
+        "vsyscall=none"
+      ];
+    };
   };
 }
diff --git a/profiles/graphical.nix b/profiles/graphical.nix
index a4fa0cd..8ba6e7f 100644
--- a/profiles/graphical.nix
+++ b/profiles/graphical.nix
@@ -18,6 +18,15 @@
       ];
 
       # gtk = {
+      #   enable = true;
+      #   font.name = "Victor Mono SemiBold 12";
+      #   theme = {
+      #     name = "SolArc-Dark";
+      #     package = pkgs.solarc-gtk-theme;
+      #   };
+      # };
+
+      # gtk = {
       #   theme.package = pkgs.gnome.gnome-themes-extra;
       #   theme.name = "Adwaita-dark";
       #   enable = true;