dotfiles/machines/laptop.nix

31 lines
481 B
Nix
Raw Normal View History

2024-07-18 11:48:49 +00:00
{ ... }:
{
imports = [
2024-07-18 20:21:06 +00:00
# Import environment
../default.nix
2024-07-18 11:48:49 +00:00
# TODO: Remove later
../merged.nix
];
config = {
# State version
system.stateVersion = "24.05";
# Machine hostname
networking.hostName = "20212060";
# Enabled modules
modules = {
pipewire.enable = true;
wpa_supplicant.enable = true;
};
# User accounts
machine.users.jan = {
sudo = true;
configuration = ../users/jan.nix;
};
};
}