Compare commits

...

3 commits

Author SHA1 Message Date
Emmet 15a9097acf Fixes system rebuilding 2024-01-26 14:45:23 -06:00
Emmet 7cd01cfc0c Added cli timer 2024-01-26 14:42:04 -06:00
Emmet 7e05ce1184 Hyprland config base for 2 monitor setup 2024-01-26 14:41:54 -06:00
4 changed files with 9 additions and 3 deletions

View file

@ -13,7 +13,7 @@
../../system/hardware/opengl.nix
../../system/hardware/printing.nix
../../system/hardware/bluetooth.nix
(./. + "../../../system/wm"+("/"+wm)+".nix") # My window manager
(./. + "../../../system/wm"+("/"+userSettings.wm)+".nix") # My window manager
../../system/app/flatpak.nix
../../system/app/virtualization.nix
( import ../../system/app/docker.nix {storageDriver = "btrfs"; inherit userSettings lib;} )
@ -74,7 +74,7 @@
isNormalUser = true;
description = userSettings.name;
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
packages = [];
uid = 1000;
};

View file

@ -1,4 +1,4 @@
{ ... }:
{ config, pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_zen;

View file

@ -9,6 +9,7 @@
gnugrep gnused
killall
libnotify
timer
bat eza fd bottom ripgrep
rsync
tmux

View file

@ -215,10 +215,15 @@
bind=SUPER,P,exec,keepmenu
bind=SUPERSHIFT,P,exec,hyprprofile-dmenu
# 3 monitor setup
monitor=eDP-1,1920x1080,1000x1200,1
monitor=HDMI-A-1,1920x1200,1920x0,1
monitor=DP-1,1920x1200,0x0,1
# 2 monitor setup
#monitor=eDP-1,1920x1080,1920x0,1
#monitor=DP-1,1920x1200,0x0,1
xwayland {
force_zero_scaling = true
}