diff --git a/nixos/biscuit/configuration.nix b/nixos/biscuit/configuration.nix index b43d617..949405d 100644 --- a/nixos/biscuit/configuration.nix +++ b/nixos/biscuit/configuration.nix @@ -14,12 +14,6 @@ environment.systemPackages = with pkgs; [ vim wget - - gcc - python313 - cargo - rustc - wl-clipboard ]; diff --git a/pkgs/hyprland/biscuit.nix b/pkgs/hyprland/biscuit.nix index 0ffc800..d418be0 100644 --- a/pkgs/hyprland/biscuit.nix +++ b/pkgs/hyprland/biscuit.nix @@ -1,6 +1,7 @@ {...}: { wayland.windowManager.hyprland = { enable = true; + xwayland.enable = true; settings = { "$mod" = "SUPER"; "$term" = "kitty"; @@ -11,6 +12,7 @@ exec = [ "$term" + "$bar" ]; general = { diff --git a/system/bootloader.nix b/system/bootloader.nix index 909c54c..1e39307 100644 --- a/system/bootloader.nix +++ b/system/bootloader.nix @@ -1,4 +1,6 @@ { ... }: { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + + boot.plymouth.enable = true; } diff --git a/system/development.nix b/system/development.nix index da0be91..590dccd 100644 --- a/system/development.nix +++ b/system/development.nix @@ -1,2 +1,8 @@ {pkgs, ...}: { + environment.systemPackages = with pkgs; [ + gcc + python3 + cargo + rustc + ]; } diff --git a/system/wayland.nix b/system/wayland.nix index 55d4e2d..e0909f0 100644 --- a/system/wayland.nix +++ b/system/wayland.nix @@ -1,8 +1,12 @@ -{...}: { +{pkgs, ...}: { + environment.systemPackages = with pkgs; [ + ]; + programs.hyprland.enable = true; hardware = { graphics.enable = true; }; services.xserver = { + # displayManager.sddm.wayland = true; displayManager.gdm.enable = true; }; }