cleaned up
This commit is contained in:
@@ -14,12 +14,6 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
|
||||
gcc
|
||||
python313
|
||||
cargo
|
||||
rustc
|
||||
|
||||
wl-clipboard
|
||||
];
|
||||
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ ... }: {
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.plymouth.enable = true;
|
||||
}
|
||||
|
||||
@@ -1,2 +1,8 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
gcc
|
||||
python3
|
||||
cargo
|
||||
rustc
|
||||
];
|
||||
}
|
||||
|
||||
+5
-1
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user