Skip to content

Commit ea7c94f

Browse files
t14 x
1 parent 2421ff8 commit ea7c94f

File tree

7 files changed

+631
-70
lines changed

7 files changed

+631
-70
lines changed

laptops/t/flake.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

laptops/t14/configuration.nix

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#./docker-compose.nix
4343
./docker-daemon.nix
4444
#./smokeping.nix
45+
./x.nix
4546
];
4647

4748
boot = {
@@ -56,8 +57,8 @@
5657

5758
# https://nixos.wiki/wiki/Linux_kernel
5859
#kernelPackages = pkgs.linuxPackages; # need to run this old kernel to allow nvidia driver to compile :(
59-
kernelPackages = pkgs.unstable.linuxPackages;
60-
#boot.kernelPackages = pkgs.linuxPackages_latest;
60+
#kernelPackages = pkgs.unstable.linuxPackages;
61+
kernelPackages = pkgs.linuxPackages_latest;
6162
#boot.kernelPackages = pkgs.linuxPackages_rpi4
6263

6364
# https://github.com/tolgaerok/nixos-2405-gnome/blob/main/core/boot/efi/efi.nix#L56C5-L56C21
@@ -177,6 +178,11 @@
177178
systemd.services."dbus-org.freedesktop.ModemManager1".enable = false;
178179

179180
services.clickhouse.enable = false;
181+
# https://nixos.wiki/wiki/PostgreSQL
182+
services.postgresql.enable = true;
183+
# https://nixos.wiki/wiki/Mysql
184+
services.mysql.package = pkgs.mariadb;
185+
services.mysql.enable = true;
180186

181187
# environment.variables defined in hardware-graphics.nix
182188
environment.sessionVariables = {

laptops/t14/flake.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

laptops/t14/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
lib = nixpkgs.lib;
5252
in {
5353
nixosConfigurations = {
54-
t = lib.nixosSystem rec {
54+
t14 = lib.nixosSystem rec {
5555
#system ="x86_64-linux";
5656
inherit system;
5757
specialArgs = { inherit hyprland; };

0 commit comments

Comments
 (0)