This commit is contained in:
John Lancaster
2026-03-25 21:56:59 -05:00
parent 8b4a2a36b6
commit 2ca7dcc464
+6 -3
View File
@@ -1,6 +1,10 @@
{ self, inputs, ... }:
{
flake.modules.nixos.p14sConfiguration = { pkgs, lib, ... }: {
flake.modules.nixos.p14sConfiguration = { pkgs, lib, ... }:
let
hostname = "john-p14s";
in
{
imports = [
self.modules.nixos.p14sHardware
];
@@ -9,7 +13,7 @@
nixpkgs.config.allowUnfree = true;
networking = {
hostName = "john-p14s";
hostName = hostname;
networkmanager.enable = true;
};
@@ -127,6 +131,5 @@
# no need to redefine it in your config for now)
# media-session.enable = true;
};
};
}