From 6e4dc0dd2aa4f716dad337bddc49a9abfe6af862 Mon Sep 17 00:00:00 2001
From: DerGrumpf
Date: Sun, 6 Apr 2025 18:50:43 +0200
Subject: [PATCH] Added: HP Conf
---
hosts/hp15-n028sg/default.nix | 44 +++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 hosts/hp15-n028sg/default.nix
diff --git a/hosts/hp15-n028sg/default.nix b/hosts/hp15-n028sg/default.nix
new file mode 100644
index 0000000..baad2f6
--- /dev/null
+++ b/hosts/hp15-n028sg/default.nix
@@ -0,0 +1,44 @@
+# Edit this configuration file to define what should be installed on
+# your system. Help is available in the configuration.nix(5) man page
+# and in the NixOS manual (accessible by running ‘nixos-help’).
+
+{ config, pkgs, ... }:
+
+{
+ imports = [
+ ../../modules/system.nix
+ ../../modules/nix-settings.nix
+ ../../modules/vpn.nix
+ ../../modules/fonts.nix
+ ../../modules/firewall.nix
+ ../../modules/localisation.nix
+ ../../modules/openssh.nix
+ ../../modules/pipewire.nix
+ ../../modules/podman.nix
+ ../../modules/services.nix
+ ../../modules/regreet/regreet.nix
+ ../../modules/plymouth.nix
+ ../../modules/file_managers/spacefm.nix
+
+# Include the results of the hardware scan.
+ ./hardware-configuration.nix
+ ];
+
+ programs.geary.enable = true;
+
+ boot.loader = {
+ grub = {
+ enable = true;
+ device = "/dev/sda";
+ };
+ };
+
+ networking.hostName = "nix-hp"; # Define your hostname.
+
+ hardware.opengl.enable = true;
+
+ system.stateVersion = "25.11"; # Did you read the comment?
+
+}
+
+