nix-config/hosts/nixos/aramis/profiles.nix
Bruno BELANYI 27564cad42
All checks were successful
ci/woodpecker/push/check Pipeline was successful
modules: system: printing: move from 'profiles'
This isn't really a cross-cutting module, it should be a module rather
than a profile.
2023-11-11 17:59:49 +00:00

18 lines
379 B
Nix

{ ... }:
{
my.profiles = {
# Bluetooth configuration and GUI
bluetooth.enable = true;
# Mouse and keyboard configuration
devices.enable = true;
# GTK theme configuration
gtk.enable = true;
# Laptop specific configuration
laptop.enable = true;
# i3 configuration
wm.windowManager = "i3";
# X configuration
x.enable = true;
};
}