This commit is contained in:
joy 2025-01-17 22:52:42 +01:00
parent 9b879669e0
commit 9009f63efc
6 changed files with 39 additions and 15 deletions

View file

@ -97,11 +97,11 @@
}, },
"locked": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1737028554, "lastModified": 1737086610,
"narHash": "sha256-6VB1uVPqyaXTTori47ESnvAlQ1nHR4XwRybBHxWpL3E=", "narHash": "sha256-c8b20yTbg2oaUvCVXdm2Lvh1YQN0v2Xp4lpvJaGPOCQ=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "9b53b108b417e6d3fef7743c4034df582fbd9a7e", "rev": "75a6a0f78832ef7c1e5e86f0d55bf07e7d01980d",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {
@ -267,11 +267,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736883540, "lastModified": 1737120639,
"narHash": "sha256-dgPgoPUSg8cGAMqbhQRkww665sZtgzpWXxWjlyqhv94=", "narHash": "sha256-p5e/45V41YD3tMELuiNIoVCa25/w4nhOTm0B9MtdHFI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0dfec9deb275854a56c97c356c40ef72e3a2e632", "rev": "a0046af169ce7b1da503974e1b22c48ef4d71887",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -376,11 +376,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1736883708, "lastModified": 1737062831,
"narHash": "sha256-uQ+NQ0/xYU0N1CnXsa2zghgNaOPxWpMJXSUJJ9W7140=", "narHash": "sha256-Tbk1MZbtV2s5aG+iM99U8FqwxU/YNArMcWAv6clcsBc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "eb62e6aa39ea67e0b8018ba8ea077efe65807dc8", "rev": "5df43628fdf08d642be8ba5b3625a6c70731c19c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -512,11 +512,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736808430, "lastModified": 1737107480,
"narHash": "sha256-wlgdf/n7bJMLBheqt1jmPoxJFrUP6FByKQFXuM9YvIk=", "narHash": "sha256-GXUE9+FgxoZU8v0p6ilBJ8NH7k8nKmZjp/7dmMrCv3o=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "553c7cb22fed19fd60eb310423fdc93045c51ba8", "rev": "4c4fb93f18b9072c6fa1986221f9a3d7bf1fe4b6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -532,11 +532,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736808430, "lastModified": 1737107480,
"narHash": "sha256-wlgdf/n7bJMLBheqt1jmPoxJFrUP6FByKQFXuM9YvIk=", "narHash": "sha256-GXUE9+FgxoZU8v0p6ilBJ8NH7k8nKmZjp/7dmMrCv3o=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "553c7cb22fed19fd60eb310423fdc93045c51ba8", "rev": "4c4fb93f18b9072c6fa1986221f9a3d7bf1fe4b6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -24,6 +24,7 @@
theme.enable = true; theme.enable = true;
hyprland.enable = true; hyprland.enable = true;
networking.enable = true; networking.enable = true;
mysql.enable = true;
imports = [ imports = [
./hardware.nix ./hardware.nix

View file

@ -22,6 +22,7 @@
theme.enable = true; theme.enable = true;
hyprland.enable = true; hyprland.enable = true;
networking.enable = true; networking.enable = true;
mysql.enable = true;
imports = [ imports = [
./hardware.nix ./hardware.nix

View file

@ -8,5 +8,6 @@
./nginx ./nginx
./forgejo ./forgejo
./immich ./immich
./mysql
]; ];
} }

View file

@ -0,0 +1,20 @@
{
pkgs,
config,
lib,
...
}: {
options = {
mysql.enable = lib.mkEnableOption "";
};
config = lib.mkIf config.mysql.enable {
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
environment.systemPackages = with pkgs; [
mysql-workbench
];
};
}

View file

@ -25,6 +25,7 @@
gnome-sound-recorder gnome-sound-recorder
kdePackages.kdenlive kdePackages.kdenlive
sqlitebrowser sqlitebrowser
libreoffice-qt
]; ];
}; };
} }