From 6f8ecf6242b49f5e26d7b0c89b666b009052b74b Mon Sep 17 00:00:00 2001 From: osbm Date: Wed, 12 Feb 2025 01:31:41 +0300 Subject: [PATCH] try another firefox instance --- flake.lock | 6 +++--- home/firefox.nix | 9 +++++++++ home/home.nix | 1 + modules/default.nix | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 home/firefox.nix diff --git a/flake.lock b/flake.lock index f7e799f..5967914 100644 --- a/flake.lock +++ b/flake.lock @@ -194,11 +194,11 @@ ] }, "locked": { - "lastModified": 1739287084, - "narHash": "sha256-CtRNJsqsXIArJV+AKWZVBMO8PD1FQB69br+WMtTJEgI=", + "lastModified": 1739298825, + "narHash": "sha256-q9CzTY7n8n9RK9mKUQ4VbaKdydhXQqzphahEG5Wt8sI=", "owner": "nix-community", "repo": "home-manager", - "rev": "8f351726c5841d86854e7fa6003ea472352f5208", + "rev": "f0a31d38e6de48970ce1fe93e6ea343e20a9c80a", "type": "github" }, "original": { diff --git a/home/firefox.nix b/home/firefox.nix new file mode 100644 index 0000000..e3c10fc --- /dev/null +++ b/home/firefox.nix @@ -0,0 +1,9 @@ +{pkgs, ...}: { + programs.firefox = { + enable = true; + profiles.osbm = { + id = 0; + name = "osbm"; + }; + }; +} \ No newline at end of file diff --git a/home/home.nix b/home/home.nix index d168b81..0814726 100644 --- a/home/home.nix +++ b/home/home.nix @@ -9,6 +9,7 @@ ./ssh.nix ./bash.nix ./tlrc.nix + ./firefox.nix ]; home.username = "osbm"; diff --git a/modules/default.nix b/modules/default.nix index b3afe0f..ad2ab8c 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -5,7 +5,7 @@ ./concentration.nix ./disable-hibernation.nix ./emulation.nix - ./firefox.nix + # ./firefox.nix ./fonts.nix ./graphical-interface.nix ./i18n.nix