summaryrefslogtreecommitdiff
path: root/hosts/libreX60/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/libreX60/configuration.nix')
-rw-r--r--hosts/libreX60/configuration.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/libreX60/configuration.nix b/hosts/libreX60/configuration.nix
index 4f20501..2ebb333 100644
--- a/hosts/libreX60/configuration.nix
+++ b/hosts/libreX60/configuration.nix
@@ -16,6 +16,22 @@
# Use libre kernel
boot.kernelPackages = pkgs.linuxPackages-libre;
+ # Enable common options
+ _archetypes = {
+ # Use desktop profile
+ profiles.desktop = {
+ enable = true;
+ home.users.timmy.enable = true;
+ };
+ };
+
+ # Enable user timmy
+ _users.timmy = {
+ enable = true;
+ autologin.enable = true;
+ wifi.enable = true;
+ };
+
# i915 Gpu requires intel driver
services.xserver.videoDrivers = [ "intel" ];