polybar and related programms
This commit is contained in:
parent
c63a896abf
commit
d83931025b
5 changed files with 244 additions and 3 deletions
|
|
@ -17,7 +17,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||
boot.initrd.kernelModules = [ "amdgpu" "coretemp"];
|
||||
|
||||
services.hardware.bolt.enable = true;
|
||||
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
|
||||
displayManager = {
|
||||
setupCommands = ''
|
||||
${pkgs.xorg.xrandr}/bin/xrandr --output eDP-1 --mode 3840x2160;
|
||||
${pkgs.xorg.xrandr}/bin/xrandr --output eDP-1 --dpi 240 --mode 3840x2160;
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
@ -107,6 +107,14 @@
|
|||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
nixpkgs.config = {
|
||||
packageOverrides = pkgs: rec {
|
||||
polybar = pkgs.polybar.override {
|
||||
i3Support = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# systemwide packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue