cleaned up

This commit is contained in:
biscuit
2025-05-20 05:56:07 -05:00
parent d9edf3f389
commit 7fc61d7d27
5 changed files with 15 additions and 7 deletions
-6
View File
@@ -14,12 +14,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
wget wget
gcc
python313
cargo
rustc
wl-clipboard wl-clipboard
]; ];
+2
View File
@@ -1,6 +1,7 @@
{...}: { {...}: {
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
xwayland.enable = true;
settings = { settings = {
"$mod" = "SUPER"; "$mod" = "SUPER";
"$term" = "kitty"; "$term" = "kitty";
@@ -11,6 +12,7 @@
exec = [ exec = [
"$term" "$term"
"$bar"
]; ];
general = { general = {
+2
View File
@@ -1,4 +1,6 @@
{ ... }: { { ... }: {
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.plymouth.enable = true;
} }
+6
View File
@@ -1,2 +1,8 @@
{pkgs, ...}: { {pkgs, ...}: {
environment.systemPackages = with pkgs; [
gcc
python3
cargo
rustc
];
} }
+5 -1
View File
@@ -1,8 +1,12 @@
{...}: { {pkgs, ...}: {
environment.systemPackages = with pkgs; [
];
programs.hyprland.enable = true;
hardware = { hardware = {
graphics.enable = true; graphics.enable = true;
}; };
services.xserver = { services.xserver = {
# displayManager.sddm.wayland = true;
displayManager.gdm.enable = true; displayManager.gdm.enable = true;
}; };
} }