switched to hyprland

This commit is contained in:
k 2025-12-09 23:09:31 -05:00
parent 7fea267494
commit a6496a874d
3 changed files with 19 additions and 7 deletions

View File

@ -51,7 +51,9 @@
settings = { settings = {
exec-once = [ exec-once = [
#"${pkgs.iio-hyprland}/bin/iio-hyprland" #"${pkgs.iio-hyprland}/bin/iio-hyprland"
#"${pkgs.batsignal}/bin/batsignal -n BAT0 -b" "${pkgs.batsignal}/bin/batsignal -n BAT0 -b"
"${pkgs.waybar}/bin/waybar"
"${pkgs.hyprpaper}/bin/hyprpaper"
]; ];
monitor = "eDP-1,preferred,auto,1"; monitor = "eDP-1,preferred,auto,1";
general = { general = {

View File

@ -55,12 +55,18 @@
services = { services = {
hardware.bolt = {enable = true;}; hardware.bolt = {enable = true;};
xserver = { displayManager.ly = {
displayManager.gdm.enable = true; enable = true;
desktopManager.gnome.enable = true; x11Support = false;
settings = {
animation = "colormix";
battery_id = "BAT0";
clear_password = true;
colormix_col1 = "0xA7C080";
colormix_col2 = "0x7FBBB3";
colormix_col3 = "0xE67E80";
};
}; };
gnome.core-apps.enable = false;
pipewire = { pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
@ -146,11 +152,15 @@
programs = { programs = {
zsh.enable = true; zsh.enable = true;
virt-manager.enable = true; virt-manager.enable = true;
hyprland = {
enable = true;
};
}; };
virtualisation = { virtualisation = {
libvirtd = {enable = true;}; libvirtd = {enable = true;};
kvmgt = {enable = true;}; kvmgt = {enable = true;};
docker = {enable = true;};
}; };
users.users.k = { users.users.k = {

View File

@ -6,7 +6,7 @@
}: { }: {
imports = [ imports = [
../home/home_common.nix ../home/home_common.nix
../home/gnome.nix ../home/hyprland.nix
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;