diff options
author | Linnnus <[email protected]> | 2025-03-23 22:05:01 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-03-23 22:05:01 +0000 |
commit | 7f8c32c8295610ec7e5b8e387ea52cfa88250496 (patch) | |
tree | c1ce2d9c30b4597b199df1baa0f889b737444d16 /hosts/ali/desktop-environment/default.nix | |
parent | 94743c25a092fa9aa19182542b2d2026c6f88b1e (diff) |
hosts/ali: Init
Diffstat (limited to 'hosts/ali/desktop-environment/default.nix')
-rw-r--r-- | hosts/ali/desktop-environment/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/hosts/ali/desktop-environment/default.nix b/hosts/ali/desktop-environment/default.nix new file mode 100644 index 0000000..ce9e3bd --- /dev/null +++ b/hosts/ali/desktop-environment/default.nix @@ -0,0 +1,25 @@ +# This module configures a desktop environment specific to this host. +{pkgs,...}: +{ + imports = [ + ./window-manager.nix + ./input.nix + ]; + + # Enable the X11 windowing system. + services.xserver = { + enable = true; + + # TODO: We should be able to add "intel" driver? + videoDrivers = ["fbdev"]; + }; + + + # Enable sound. + # hardware.pulseaudio.enable = true; + # OR + # services.pipewire = { + # enable = true; + # pulse.enable = true; + # }; +} |