mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Update flake
This commit is contained in:
parent
97e5f1fe15
commit
72b7e5e708
9 changed files with 47 additions and 20 deletions
|
|
@ -21,19 +21,20 @@ in {
|
|||
inputs.self.outputs.homeManagerModules.default
|
||||
];
|
||||
};
|
||||
backupFileExtension = "bak";
|
||||
};
|
||||
|
||||
# Modules
|
||||
mods.desktop.enable = true;
|
||||
mods.desktop.wayland.enable = true;
|
||||
mods.desktop.wayland.enable = false;
|
||||
mods.theme.enable = true;
|
||||
mods.theme.wallpaper = ./wallpaper.png;
|
||||
|
||||
mods.social.enable = true;
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
|
||||
# Proprietary </3
|
||||
mods.unfree.steam.enable = true;
|
||||
mods.unfree.nvidia.enable = false;
|
||||
mods.unfree.nvidia.enable = true;
|
||||
|
||||
# Hardware settings
|
||||
services.xserver.displayManager.sessionCommands = ''
|
||||
|
|
@ -43,6 +44,24 @@ in {
|
|||
# services.xserver.displayManager.setupCommands = ''
|
||||
# ${pkgs.xorg.xrandr}/bin/xrandr --output HDMI-1 --mode 1920x1080 --pos 2560x0 --rotate right --output DP-2 --primary --mode 2560x1440 --pos 0x480 --rotate normal
|
||||
# '';
|
||||
services.xserver.xrandrHeads = [
|
||||
{
|
||||
output = "DP-2";
|
||||
primary = true;
|
||||
monitorConfig = ''
|
||||
Option "PreferredMode" "2560x1440"
|
||||
Option "Position" "0 480"
|
||||
'';
|
||||
}
|
||||
{
|
||||
output = "HDMI-1";
|
||||
monitorConfig = ''
|
||||
Option "PreferredMode" "1920x1080"
|
||||
Option "Position" "2560 0"
|
||||
Option "Rotate" "right"
|
||||
'';
|
||||
}
|
||||
];
|
||||
|
||||
# Backup environment
|
||||
services.xserver.windowManager.qtile.enable = true;
|
||||
|
|
|
|||
|
|
@ -5,9 +5,13 @@ let cfg = osConfig.mods; in {
|
|||
home.homeDirectory = "/home/${cfg.user.name}";
|
||||
|
||||
# Modules
|
||||
# mods.module.enable = true;
|
||||
programs.helix.enable = true;
|
||||
programs.qutebrowser.enable = true;
|
||||
mods.social.enable = true;
|
||||
mods.i3.enable = true;
|
||||
mods.terminal.emulator.enable = true;
|
||||
mods.terminal.development.enable = true;
|
||||
mods.terminal.tools.enable = true;
|
||||
|
||||
# Hardware settings
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue