diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-06-10 22:06:02 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-06-10 23:05:27 +0530 |
commit | aee9216af6875662235fd8839a827e724e53c845 (patch) | |
tree | c8c11981828c93f30475ed4dcc27aa9fd27696cb /os/pc | |
parent | a41037ef644dbacb3d577933fb3d93c210439b38 (diff) |
feat(flake/nixosModules): init
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; |