From d8fa2eb8c9e87e7f30b3ce32332238c324a16f2c Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Fri, 24 May 2024 17:33:02 -0300 Subject: [PATCH] Added new laptop to the flee --- flake.nix | 14 ++++++++++++++ hostnames.md | 2 +- nixos/configuration.nix | 3 +++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 15554db..df59f87 100644 --- a/flake.nix +++ b/flake.nix @@ -91,6 +91,20 @@ ./nixos/work.nix ]; }; + #Thinkpad E15 Gen 3 Laptop (ThinkPad) - Type 20YG - Model 20YG003EUS + raziel = nixpkgs.lib.nixosSystem { + specialArgs = { + inherit inputs outputs; + hostname = "raziel"; + }; + modules = [ + ./nixos/configuration.nix + ./nixos/kde-desktop.nix + ./nixos/cad.nix + ./nixos/zerotier.nix + ./nixos/work.nix + ]; + }; hearth = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs outputs; diff --git a/hostnames.md b/hostnames.md index a8c2ab2..4e3b1e2 100644 --- a/hostnames.md +++ b/hostnames.md @@ -7,7 +7,7 @@ Ariel Cassiel Jophiel Zadkiel -Raziel +#Raziel Raguel Chamuel Haniel diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 364e5cb..ee16d55 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -158,6 +158,9 @@ randomizedDelaySec = "45min"; }; + programs.nix-ld.enable = true; + programs.nix-ld.libraries = with pkgs; [ + ]; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "23.05";