first commit

This commit is contained in:
2026-06-24 20:20:23 +02:00
commit 8fc0d08dbc
77 changed files with 5688 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
imports = [
./librewolf.nix
./firefox.nix
];
}
+4
View File
@@ -0,0 +1,4 @@
{ config, pkgs, ... }:
{
programs.firefox.enable = true;
}
+4
View File
@@ -0,0 +1,4 @@
_:
{
programs.librewolf.enable = true;
}
+11
View File
@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
programs = {
qutebrowser = {
enable = false;
enableDefaultBindings = true;
};
};
# home = { file = { }; };
}