nix-config/machines/aramis/profiles.nix

16 lines
313 B
Nix
Raw Normal View History

{ ... }:
{
my.profiles = {
# Bluetooth configuration and GUI
bluetooth.enable = true;
2021-05-09 11:51:00 +02:00
# GTK theme configuration
gtk.enable = true;
2021-05-09 12:04:26 +02:00
# Laptop specific configuration
laptop.enable = true;
2021-05-09 11:45:46 +02:00
# i3 configuration
wm.windowManager = "i3";
2021-05-09 11:57:10 +02:00
# X configuration
x.enable = true;
};
}