summaryrefslogtreecommitdiff
path: root/nix_archive
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-11-21 14:50:30 -0500
committerAndrew Opalach <andrew@akon.city> 2025-11-21 14:50:30 -0500
commit61c027738785e0585202b7b3a828e05344510f66 (patch)
tree1a900c432c62b74e0e66d6f8f346030af8b187ec /nix_archive
parent44edb4b57655de5b21c51d0471e2ea02ac469c0c (diff)
downloaddotfiles-61c027738785e0585202b7b3a828e05344510f66.tar.gz
dotfiles-61c027738785e0585202b7b3a828e05344510f66.tar.bz2
dotfiles-61c027738785e0585202b7b3a828e05344510f66.zip
Tweaks
Diffstat (limited to 'nix_archive')
-rw-r--r--nix_archive/flake.lock24
-rw-r--r--nix_archive/hosts/palm/configuration.nix6
-rw-r--r--nix_archive/nix/programs/bash.nix1
-rw-r--r--nix_archive/nix/system.nix2
4 files changed, 18 insertions, 15 deletions
diff --git a/nix_archive/flake.lock b/nix_archive/flake.lock
index 8c1b326..20ac471 100644
--- a/nix_archive/flake.lock
+++ b/nix_archive/flake.lock
@@ -90,11 +90,11 @@
]
},
"locked": {
- "lastModified": 1761845621,
- "narHash": "sha256-d+R4MHsGmdebvSMsYUFWONsZSlUbOo8Zq/wjMdMiIac=",
+ "lastModified": 1762463325,
+ "narHash": "sha256-33YUsWpPyeBZEWrKQ2a1gkRZ7i0XCC/2MYpU6BVeQSU=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "97e3022a8d2c09313fa49847f6da4d76abcfc72d",
+ "rev": "0562fef070a1027325dd4ea10813d64d2c967b39",
"type": "github"
},
"original": {
@@ -144,11 +144,11 @@
},
"nixos-hardware": {
"locked": {
- "lastModified": 1761827175,
- "narHash": "sha256-XdPVSYyIBK4/ruoqujaQmmSGg3J2/EenexV9IEXhr6o=",
+ "lastModified": 1762463231,
+ "narHash": "sha256-hv1mG5j5PTbnWbtHHomzTus77pIxsc4x8VrMjc7+/YE=",
"owner": "NixOS",
"repo": "nixos-hardware",
- "rev": "43ffe9ac82567512abb83187cb673de1091bdfa8",
+ "rev": "52113c4f5cfd1e823001310e56d9c8d0699a6226",
"type": "github"
},
"original": {
@@ -211,11 +211,11 @@
},
"nixpkgs_3": {
"locked": {
- "lastModified": 1761672384,
- "narHash": "sha256-o9KF3DJL7g7iYMZq9SWgfS1BFlNbsm6xplRjVlOCkXI=",
+ "lastModified": 1762363567,
+ "narHash": "sha256-YRqMDEtSMbitIMj+JLpheSz0pwEr0Rmy5mC7myl17xs=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "08dacfca559e1d7da38f3cf05f1f45ee9bfd213c",
+ "rev": "ae814fd3904b621d8ab97418f1d0f2eb0d3716f4",
"type": "github"
},
"original": {
@@ -233,11 +233,11 @@
]
},
"locked": {
- "lastModified": 1761857284,
- "narHash": "sha256-oIt6cQrUB4VA3lgDgwptzP5P7iq0DalaqQMctYQB31k=",
+ "lastModified": 1762609498,
+ "narHash": "sha256-wrKVkV5WDNVpgR9W9Nxliy9oPeJRonFGyGft3RTQXDU=",
"owner": "nix-community",
"repo": "NUR",
- "rev": "abbcf2d95f63db25ae8c6cfd331bbab3b97d962a",
+ "rev": "bd7e74a823bb44f3b452a5e35dfe20548fa6ce91",
"type": "github"
},
"original": {
diff --git a/nix_archive/hosts/palm/configuration.nix b/nix_archive/hosts/palm/configuration.nix
index 42cf14c..4619df3 100644
--- a/nix_archive/hosts/palm/configuration.nix
+++ b/nix_archive/hosts/palm/configuration.nix
@@ -50,7 +50,7 @@ in {
top_padding = 0;
picture = ../../themes/year_of_snake/splash.png;
width = 64;
- padding = { top = -3; left = -4; text = 5; };
+ padding = { top = -4; left = -4; text = 5; };
position = "left";
header = "";
footer = "";
@@ -100,13 +100,13 @@ in {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
- CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
+ CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
CPU_MIN_PERF_ON_AC = 0;
CPU_MAX_PERF_ON_AC = 100;
CPU_MIN_PERF_ON_BAT = 0;
- CPU_MAX_PERF_ON_BAT = 20;
+ CPU_MAX_PERF_ON_BAT = 30;
START_CHARGE_THRESH_BAT0 = 40;
STOP_CHARGE_THRESH_BAT0 = 85;
diff --git a/nix_archive/nix/programs/bash.nix b/nix_archive/nix/programs/bash.nix
index 571b4fe..cf18376 100644
--- a/nix_archive/nix/programs/bash.nix
+++ b/nix_archive/nix/programs/bash.nix
@@ -9,6 +9,7 @@
programs.bash = {
enable = true;
shellAliases = {
+ ls = "ls --ignore=lost+found --color=auto";
cp = "rsync -av";
top = "htop";
bc = "bc -l";
diff --git a/nix_archive/nix/system.nix b/nix_archive/nix/system.nix
index 7aaebe6..46b6ad1 100644
--- a/nix_archive/nix/system.nix
+++ b/nix_archive/nix/system.nix
@@ -13,6 +13,8 @@
nixpkgs.config.allowUnfree = true;
hardware.enableRedistributableFirmware = true;
+ boot.kernel.sysctl."kernel.yama.ptrace_scope" = "0";
+
security.pam.loginLimits = [
{
domain = "*";