mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-12 21:52:18 +00:00
32 lines
607 B
Nix
32 lines
607 B
Nix
{ pkgs, inputs, ... }: {
|
|
imports = [
|
|
inputs.hardware.nixosModules.common-cpu-intel
|
|
inputs.hardware.nixosModules.common-pc-ssd
|
|
|
|
./hardware-configuration.nix
|
|
./services
|
|
|
|
../common/global
|
|
../common/users/john
|
|
|
|
../common/optional/docker.nix
|
|
../common/optional/libvirtd.nix
|
|
../common/optional/pipewire.nix
|
|
../common/optional/sshd.nix
|
|
];
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
|
|
networking = {
|
|
hostName = "pixnix";
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
}
|