summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-21 16:57:49 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-21 17:10:01 -0500
commit822437cc8479e29e838b2083f332f0d6899ec032 (patch)
tree688ae50d3c1f321872a88df33aba2a6a44225169
parentfix screenshot artifacts (diff)
downloaddotfiles-nix-822437cc8479e29e838b2083f332f0d6899ec032.tar.gz
dotfiles-nix-822437cc8479e29e838b2083f332f0d6899ec032.tar.bz2
dotfiles-nix-822437cc8479e29e838b2083f332f0d6899ec032.zip
update commits
-rw-r--r--flake.lock34
-rw-r--r--home/apps/caelestia/settings.nix5
-rw-r--r--home/browsers/firefox/default.nix7
3 files changed, 23 insertions, 23 deletions
diff --git a/flake.lock b/flake.lock
index 96829e8..4bf7741 100644
--- a/flake.lock
+++ b/flake.lock
@@ -116,11 +116,11 @@
]
},
"locked": {
- "lastModified": 1768920389,
- "narHash": "sha256-VQO9cX7UWFewVoePJ7FKDSSlh0+oMOzfxq6G+3UyFWw=",
+ "lastModified": 1769024061,
+ "narHash": "sha256-7KC8OYI4wsIH+gP+9Var4FILL2qkJi3cIOrjRO5OaUw=",
"ref": "refs/heads/main",
- "rev": "6c1b374e64eb2e152daea10efee3c1d983739bf7",
- "revCount": 1735,
+ "rev": "2c0dd689145e48e9d3683dfd3556723895fa54aa",
+ "revCount": 1736,
"type": "git",
"url": "https://g.freya.cat/caelestia-shell"
},
@@ -258,11 +258,11 @@
]
},
"locked": {
- "lastModified": 1768927746,
- "narHash": "sha256-zyMpWHqcpKVmRc1W2NEK7DAuyVJZV62Jdjqudg70b1k=",
+ "lastModified": 1769015285,
+ "narHash": "sha256-MlqzCJbckJsgwfkRs64H2xaX2Uxl4o6Z9XYfkYS1N/E=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "63a87808f5f9b6e4195a1d33f6ea25d23f4aa0df",
+ "rev": "ec0247a7a19f641595c24ac1ea4df6461d1cdb36",
"type": "github"
},
"original": {
@@ -707,11 +707,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1768564909,
- "narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=",
+ "lastModified": 1768886240,
+ "narHash": "sha256-C2TjvwYZ2VDxYWeqvvJ5XPPp6U7H66zeJlRaErJKoEM=",
"owner": "nixos",
"repo": "nixpkgs",
- "rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f",
+ "rev": "80e4adbcf8992d3fd27ad4964fbb84907f9478b0",
"type": "github"
},
"original": {
@@ -799,11 +799,11 @@
]
},
"locked": {
- "lastModified": 1768689040,
- "narHash": "sha256-Tlnr5BulJcMers/cb+YvmBQW4nKHjdKo9loInJkyO2k=",
+ "lastModified": 1768985439,
+ "narHash": "sha256-qkU4r+l+UPz4dutMMRZSin64HuVZkEv9iFpu9yMWVY0=",
"ref": "refs/heads/master",
- "rev": "7a427ce1979ce7447e885c4f30129b40f3d466f5",
- "revCount": 729,
+ "rev": "191085a8821b35680bba16ce5411fc9dbe912237",
+ "revCount": 731,
"type": "git",
"url": "https://git.outfoxxed.me/quickshell/quickshell"
},
@@ -1112,11 +1112,11 @@
]
},
"locked": {
- "lastModified": 1768919538,
- "narHash": "sha256-w10iy/aqd5LtD78NDWWG+eKGzkb+cGhAAo7PVciLbWE=",
+ "lastModified": 1768999995,
+ "narHash": "sha256-7OXxa5rG+GeUL0iYkAbpVKFW/QPcThmlZMJufYOiwdc=",
"owner": "0xc000022070",
"repo": "zen-browser-flake",
- "rev": "37149a5b77e8fd2b5332e8cec9edf39ca5b8e8bc",
+ "rev": "13f0273a63b054c4e6de04f0fc838e18f1bf28e7",
"type": "github"
},
"original": {
diff --git a/home/apps/caelestia/settings.nix b/home/apps/caelestia/settings.nix
index a529241..c116025 100644
--- a/home/apps/caelestia/settings.nix
+++ b/home/apps/caelestia/settings.nix
@@ -81,11 +81,6 @@ in {
audio = ["pavucontrol"];
playback = ["mpv"];
};
- # disable lock screen
- idle = {
- lockBeforeSleep = false;
- timeouts = [];
- };
};
# Background
diff --git a/home/browsers/firefox/default.nix b/home/browsers/firefox/default.nix
index 578efe4..d251ae1 100644
--- a/home/browsers/firefox/default.nix
+++ b/home/browsers/firefox/default.nix
@@ -16,7 +16,12 @@ in {
config = mkIf cfg.enable {
default.browser = lib.mkDefault "firefox";
- programs.firefox = rec {
+ mozilla = {
+ firefoxNativeMessagingHosts = lib.mkForce [];
+ thunderbirdNativeMessagingHosts = lib.mkForce [];
+ };
+
+ programs.firefox = {
enable = true;
package = my-firefox;