diff options
Diffstat (limited to 'os/pc')
-rw-r--r-- | os/pc/configuration.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/os/pc/configuration.nix b/os/pc/configuration.nix index 33f38cd..423f66d 100644 --- a/os/pc/configuration.nix +++ b/os/pc/configuration.nix @@ -1,4 +1,9 @@ -{ config, pkgs, ... }: +{ + config, + pkgs, + lib, + ... +}: let user = config.global.userdata.name; in @@ -15,6 +20,8 @@ in ./modules/firejail.nix ]; + networking.hostName = lib.mkDefault "pc"; + boot = { consoleLogLevel = 3; kernelPackages = pkgs.linuxPackages_latest; |