dotfiles/machines/laptop.nix

31 lines
499 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
];
config = {
# State version
system.stateVersion = "24.05";
# Machine hostname
networking.hostName = "20212060";
# Enabled modules
modules = {
2024-07-18 21:56:00 +00:00
base.enable = true;
2024-07-19 19:54:41 +00:00
power-saving.enable = false;
2024-07-18 11:48:49 +00:00
pipewire.enable = true;
wpa_supplicant.enable = true;
};
# User accounts
machine.users.jan = {
sudo = true;
configuration = ../users/jan.nix;
};
};
2024-07-19 12:00:55 +00:00
}