flake/kilimandjaro/default.nix
uku e9ceb852f9
refactor flake, part 2
now using a homemade `mkSystem` function to make systems more identical
thanks to leah for telling me about genAttrs

note to future self: this is the commit where everything started going to shit.
this is the moment in time where i decided nix was perfection.
this is the precise timestamp in which i found out that there's no coming back from nix.

i bid you farewell, old uku.
2023-11-13 15:54:47 +01:00

13 lines
272 B
Nix

{pkgs, ...}: {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
services.xserver = {
videoDrivers = ["intel"];
libinput.enable = true;
};
programs.light.enable = true;
users.users.leo.packages = with pkgs; [networkmanagerapplet];
}