changes
This commit is contained in:
commit
92691d7506
40 changed files with 2011 additions and 0 deletions
23
maskiner/desktop/configuration.nix
Normal file
23
maskiner/desktop/configuration.nix
Normal 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,
|
||||
...
|
||||
}: {
|
||||
# You can import other NixOS modules here
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../config/base.nix
|
||||
../../config/users.nix
|
||||
];
|
||||
|
||||
security.rtkit.enable = true;
|
||||
networking.hostName = "nix-desktop";
|
||||
|
||||
services.xserver.dpi = 100;
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue