11 lines
196 B
Nix
Executable file
11 lines
196 B
Nix
Executable file
{ pkgs, ... }: {
|
|
imports = [
|
|
./hardware.nix
|
|
./mullvad.nix
|
|
./hyprland
|
|
];
|
|
system.stateVersion = "23.11";
|
|
networking.hostName = "lenovo";
|
|
time.timeZone = "America/Vancouver";
|
|
}
|