Changed: Waybar Config
This commit is contained in:
parent
61a3824820
commit
724477d290
@ -15,8 +15,8 @@
|
|||||||
# Hyprpaper configuration
|
# Hyprpaper configuration
|
||||||
services.hyprpaper.enable = true;
|
services.hyprpaper.enable = true;
|
||||||
services.hyprpaper.settings = {
|
services.hyprpaper.settings = {
|
||||||
preload = "Pictures/Wallpapers/girl_nixos.png";
|
preload = "Pictures/Wallpapers/space_station.png";
|
||||||
wallpaper = ", Pictures/Wallpapers/girl_nixos.png";
|
wallpaper = ", Pictures/Wallpapers/space_station.png";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
pkgs;
|
pkgs,
|
||||||
config;
|
config,
|
||||||
...
|
...
|
||||||
} = {
|
} : {
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.waybar;
|
package = pkgs.waybar;
|
||||||
@ -106,7 +106,7 @@
|
|||||||
format = {
|
format = {
|
||||||
months = "<span color='#ffead3'><b>{}</b></span>";
|
months = "<span color='#ffead3'><b>{}</b></span>";
|
||||||
weekdays = "<span color='#ffcc66'><b>{}</b></span>";
|
weekdays = "<span color='#ffcc66'><b>{}</b></span>";
|
||||||
today = "<span color='#ff6699'><b>{}</b></span>"
|
today = "<span color='#ff6699'><b>{}</b></span>";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -115,7 +115,7 @@
|
|||||||
on-click-forward = "tz_up";
|
on-click-forward = "tz_up";
|
||||||
on-click-backward = "tz_down";
|
on-click-backward = "tz_down";
|
||||||
on-scroll-up = "shift_up";
|
on-scroll-up = "shift_up";
|
||||||
on-scroll-down = "shift_down"
|
on-scroll-down = "shift_down";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -31,9 +31,45 @@
|
|||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "nix-hp"; # Define your hostname.
|
networking = {
|
||||||
|
hostName = "nix-hp";
|
||||||
|
#networkmanager.enable = true;
|
||||||
|
|
||||||
|
wireless = {
|
||||||
|
enable = true;
|
||||||
|
networks = {
|
||||||
|
LANFRED.pskRaw = "36e2b41b51328800a9582be1a05f13f796f943569610ccdb61304803b86ce3da";
|
||||||
|
#free.wifi = {};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nameservers = [
|
||||||
|
"1.1.1.1"
|
||||||
|
"1.0.0.1"
|
||||||
|
"8.8.8.8"
|
||||||
|
"8.8.4.4"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
nixpkgs.config.nvidia.acceptLicense = true;
|
||||||
hardware.graphics.enable = true;
|
hardware.graphics.enable = true;
|
||||||
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
hardware.nvidia = {
|
||||||
|
package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
||||||
|
modesetting.enable = true;
|
||||||
|
open = false;
|
||||||
|
powerManagement = {
|
||||||
|
enable = false;
|
||||||
|
finegrained = false;
|
||||||
|
};
|
||||||
|
nvidiaSettings = true;
|
||||||
|
|
||||||
|
prime = {
|
||||||
|
intelBusId = "PCI:0:2:0";
|
||||||
|
nvidiaBusId = "PCI:10:0:0";
|
||||||
|
sync.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = "25.11"; # Did you read the comment?
|
system.stateVersion = "25.11"; # Did you read the comment?
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# Enable sound with pipewire.
|
# Enable sound with pipewire.
|
||||||
#sound.enable = true;
|
#sound.enable = true;
|
||||||
hardware.pulseaudio.enable = false;
|
hardware.pulseaudio.enable = false;
|
||||||
|
enviroment.systemPackages = with pkgs; [ pamixer ];
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
alsa.enable = true;
|
||||||
|
@ -30,7 +30,11 @@
|
|||||||
ethtool
|
ethtool
|
||||||
pciutils # lspci
|
pciutils # lspci
|
||||||
usbutils # lsusb
|
usbutils # lsusb
|
||||||
|
lshw
|
||||||
|
|
||||||
|
# Graphics
|
||||||
libGL
|
libGL
|
||||||
|
glxinfo
|
||||||
|
|
||||||
# Rizz
|
# Rizz
|
||||||
fastfetch
|
fastfetch
|
||||||
|
Loading…
Reference in New Issue
Block a user