diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 206b102..b6ae215 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -18,10 +18,6 @@ hardware.bluetooth.enable = true; services.blueman.enable = true; - # Sound - hardware.pulseaudio.enable = true; - - # Set your time zone. time.timeZone = "America/Chicago"; @@ -67,6 +63,10 @@ p7zip gcc ]; + + environment.sessionVariables = { + + }; # Enable the OpenSSH daemon. services.openssh.enable = true; @@ -74,14 +74,23 @@ # Enable non-bash shell programs.zsh.enable = true; - # Enable hyprland + ### ---------------------------------------- + ### DESKTOP START + hardware = { + # pulseaudio.enable = true; + graphics.enable = true; + nvidia.modesetting.enable = false; + }; programs.hyprland = { enable = true; - # set the flake package # package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; - # # make sure to also set the portal package, so that they are in sync # portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; + xwayland.enable = true; }; + + ### DESKTOP END + ### ---------------------------------------- + # Enable experimental features nix.settings.experimental-features = [ "nix-command" "flakes" ]; #nixpkgs = {