nix-config/hosts/nixos/aramis/profiles.nix

18 lines
379 B
Nix
Raw Normal View History

{ ... }:
{
my.profiles = {
# Bluetooth configuration and GUI
bluetooth.enable = true;
# Mouse and keyboard configuration
devices.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;
};
}