Added work desktop

This commit is contained in:
ifactsbuildbot 2024-11-01 11:02:22 +01:00
parent 96263bf7af
commit 7c23b908fd
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# This is your system's configuration file.
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{
inputs,
lib,
config,
pkgs,
myhostname,
...
}: {
# You can import other NixOS modules here
imports = [
./hardware-configuration.nix
../../config/base.nix
../../config/users.nix
];
networking.hostName = myhostname;
services.xserver.dpi = 140;
system.stateVersion = "23.11";
}