Compare commits
3 commits
a3320656c0
...
856620a387
Author | SHA1 | Date | |
---|---|---|---|
856620a387 | |||
7a8372ffb6 | |||
a555bc0d26 |
3 changed files with 15 additions and 7 deletions
nix
|
@ -128,6 +128,8 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
stateVersion = "25.05";
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
|
@ -312,9 +314,9 @@ in
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# set state version
|
||||
home-manager.users.${config.user}.home.stateVersion = "25.05";
|
||||
home-manager.users.root.home.stateVersion = "25.05";
|
||||
system.stateVersion = "25.05";
|
||||
home-manager.users.${config.user}.home.stateVersion = stateVersion;
|
||||
home-manager.users.root.home.stateVersion = stateVersion;
|
||||
system.stateVersion = stateVersion;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -7,11 +7,16 @@ let
|
|||
hyprland-plugins = inputs.hyprland-plugins.packages.${system};
|
||||
hy3 = inputs.hy3.packages.${system};
|
||||
|
||||
debug = true;
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
environment = {
|
||||
variables = {
|
||||
HYPRLAND_TRACE = if debug then "1" else "0";
|
||||
AQ_TRACE = if debug then "1" else "0";
|
||||
|
||||
XDG_CURRENT_DESKTOP = "Hyprland";
|
||||
XDG_SESSION_TYPE = "wayland";
|
||||
XDG_SESSION_DESKTOP = "Hyprland";
|
||||
|
@ -43,7 +48,7 @@ in
|
|||
];
|
||||
};
|
||||
|
||||
programs.xwayland.enable = true;
|
||||
#programs.xwayland.enable = true;
|
||||
|
||||
home-manager.users.${config.user} = {
|
||||
wayland.windowManager.hyprland = {
|
||||
|
@ -64,9 +69,9 @@ in
|
|||
settings = {
|
||||
|
||||
# Debug
|
||||
debug.disable_logs = false;
|
||||
debug.disable_time = false;
|
||||
debug.enable_stdout_logs = true;
|
||||
debug.disable_logs = ! debug;
|
||||
debug.disable_time = ! debug;
|
||||
debug.enable_stdout_logs = debug;
|
||||
|
||||
# Monitors
|
||||
monitor = map (monitor:
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
# utility
|
||||
acpi
|
||||
curl
|
||||
file
|
||||
htop
|
||||
openssh
|
||||
p7zip
|
||||
|
|
Loading…
Add table
Reference in a new issue