diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-23 23:03:35 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-23 23:03:35 -0400 |
commit | 22e7a9f5a502388f80b439b942113027450ce619 (patch) | |
tree | 8173e98e213c1634762239d92ba4d72d48fb3744 /hosts | |
parent | fix hosts (diff) | |
download | dotfiles-nix-22e7a9f5a502388f80b439b942113027450ce619.tar.gz dotfiles-nix-22e7a9f5a502388f80b439b942113027450ce619.tar.bz2 dotfiles-nix-22e7a9f5a502388f80b439b942113027450ce619.zip |
move firefox to new browser module
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/kaworu/default.nix | 4 | ||||
-rw-r--r-- | hosts/shinji/default.nix | 4 | ||||
-rw-r--r-- | hosts/thinkpad/default.nix | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/hosts/kaworu/default.nix b/hosts/kaworu/default.nix index a8f54c5..7d09423 100644 --- a/hosts/kaworu/default.nix +++ b/hosts/kaworu/default.nix @@ -28,10 +28,12 @@ inputs.nixpkgs.lib.nixosSystem rec { ]; # modules + browser = { + firefox = true; + }; desktop = { enable = true; astal = true; - firefox = true; hyprland = true; hyprlock = true; hypridle = true; diff --git a/hosts/shinji/default.nix b/hosts/shinji/default.nix index 9f86069..776b87b 100644 --- a/hosts/shinji/default.nix +++ b/hosts/shinji/default.nix @@ -51,10 +51,12 @@ inputs.nixpkgs.lib.nixosSystem rec { ]; # modules + browser = { + firefox = true; + }; desktop = { enable = true; astal = true; - firefox = true; hyprland = true; hyprlock = true; hypridle = true; diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index 6810930..5167074 100644 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -28,10 +28,12 @@ inputs.nixpkgs.lib.nixosSystem rec { ]; # modules + browser = { + firefox = true; + }; desktop = { enable = true; astal = true; - firefox = true; hyprland = true; hyprlock = true; hypridle = true; |