From 10dcd29a9406f2362c1fddb65dd0a99f09d272ba Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Thu, 18 Sep 2025 11:15:38 +0200 Subject: [PATCH] install ungoogled chromium by default --- common/home/default.nix | 4 ++++ flake.lock | 8 ++++---- flake.nix | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/common/home/default.nix b/common/home/default.nix index e5711d2..78205ea 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -376,6 +376,10 @@ in }; programs = { + chromium = { + enable = true; + package = pkgs.ungoogled-chromium; + }; # wowa, I can set btop settings from here??? btop = { enable = true; diff --git a/flake.lock b/flake.lock index ccfb2b5..1092a9f 100644 --- a/flake.lock +++ b/flake.lock @@ -1142,17 +1142,17 @@ }, "nixpkgs_7": { "locked": { - "lastModified": 1757941050, - "narHash": "sha256-DhsSuRKSyr9jbHV6WxZKKlUqgiV+U7/wxK6aiOzKX0k=", + "lastModified": 1758186451, + "narHash": "sha256-D9LlAJNj3Lw9CbH//D13YPZn7c30sOERnDjw/sbjlEg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c718a7eca49a03ec19488c101bd11fb7689e4e08", + "rev": "cea2ae6d021864957940aede166b0bc01aa8607c", "type": "github" }, "original": { "owner": "nixos", + "ref": "master", "repo": "nixpkgs", - "rev": "c718a7eca49a03ec19488c101bd11fb7689e4e08", "type": "github" } }, diff --git a/flake.nix b/flake.nix index 50a4505..03b9b90 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "Nixos config flake"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/c718a7eca49a03ec19488c101bd11fb7689e4e08"; + nixpkgs.url = "github:nixos/nixpkgs/master"; # nix based ssg nixsg.url = "github:itepastra/nixsg/no-md-parser";