mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
feat: trying to unfuck hyprland
This commit is contained in:
parent
616c51118f
commit
4a9592dad8
7 changed files with 48 additions and 40 deletions
|
@ -84,7 +84,7 @@
|
||||||
./profiles/user0
|
./profiles/user0
|
||||||
./profiles/user1
|
./profiles/user1
|
||||||
config.nixosModules.desktop
|
config.nixosModules.desktop
|
||||||
config.nixosModules.gnome
|
config.nixosModules.hyprland
|
||||||
config.nixosModules.personal
|
config.nixosModules.personal
|
||||||
config.nixosModules.shared
|
config.nixosModules.shared
|
||||||
config.nixosModules.sops
|
config.nixosModules.sops
|
||||||
|
|
|
@ -50,7 +50,7 @@ in
|
||||||
messaging
|
messaging
|
||||||
sharing
|
sharing
|
||||||
tools
|
tools
|
||||||
gnome
|
hypr
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.titlebar-buttonbox-container {
|
.titlebar-buttonbox-container {
|
||||||
display: none !important;
|
display: visible !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,8 +91,8 @@
|
||||||
#forward-button[disabled="true"] {
|
#forward-button[disabled="true"] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
.personalize-button {
|
.personalize-button {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-close-button {
|
.tab-close-button {
|
||||||
|
|
|
@ -1,29 +1,35 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
|
||||||
flameshotGrim = pkgs.flameshot.overrideAttrs (oldAttrs: {
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "flameshot-org";
|
|
||||||
repo = "flameshot";
|
|
||||||
rev = "3d21e4967b68e9ce80fb2238857aa1bf12c7b905";
|
|
||||||
sha256 = "sha256-OLRtF/yjHDN+sIbgilBZ6sBZ3FO6K533kFC1L2peugc=";
|
|
||||||
};
|
|
||||||
cmakeFlags = [
|
|
||||||
"-DUSE_WAYLAND_CLIPBOARD=1"
|
|
||||||
"-DUSE_WAYLAND_GRIM=1"
|
|
||||||
];
|
|
||||||
buildInputs = oldAttrs.buildInputs ++ [ pkgs.libsForQt5.kguiaddons ];
|
|
||||||
});
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
services.flameshot = {
|
# let
|
||||||
enable = true;
|
# flameshotGrim = pkgs.flameshot.overrideAttrs (oldAttrs: {
|
||||||
package = flameshotGrim;
|
# src = pkgs.fetchFromGitHub {
|
||||||
settings = {
|
# owner = "flameshot-org";
|
||||||
General = {
|
# repo = "flameshot";
|
||||||
disabledTrayIcon = false;
|
# rev = "3d21e4967b68e9ce80fb2238857aa1bf12c7b905";
|
||||||
showStartupLaunchMessage = false;
|
# sha256 = "sha256-OLRtF/yjHDN+sIbgilBZ6sBZ3FO6K533kFC1L2peugc=";
|
||||||
# disabledGrimWarning = false;
|
# };
|
||||||
};
|
# cmakeFlags = [
|
||||||
};
|
# "-DUSE_WAYLAND_CLIPBOARD=1"
|
||||||
|
# "-DUSE_WAYLAND_GRIM=1"
|
||||||
|
# ];
|
||||||
|
# buildInputs = oldAttrs.buildInputs ++ [ pkgs.libsForQt5.kguiaddons ];
|
||||||
|
# });
|
||||||
|
# in
|
||||||
|
# {
|
||||||
|
# services.flameshot = {
|
||||||
|
# enable = true;
|
||||||
|
# # package = flameshotGrim;
|
||||||
|
# settings = {
|
||||||
|
# General = {
|
||||||
|
# disabledTrayIcon = false;
|
||||||
|
# showStartupLaunchMessage = false;
|
||||||
|
# # disabledGrimWarning = false;
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
home.packages = builtins.attrValues {
|
||||||
|
inherit (pkgs)
|
||||||
|
flameshot
|
||||||
|
;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
1
home/modules/gui/desktop/gnome/default.nix
Normal file → Executable file
1
home/modules/gui/desktop/gnome/default.nix
Normal file → Executable file
|
@ -6,6 +6,7 @@
|
||||||
gnome-tweaks
|
gnome-tweaks
|
||||||
gnome-shell-extensions
|
gnome-shell-extensions
|
||||||
gnome-remote-desktop
|
gnome-remote-desktop
|
||||||
|
ulauncher
|
||||||
;
|
;
|
||||||
inherit (pkgs.gnomeExtensions)
|
inherit (pkgs.gnomeExtensions)
|
||||||
tiling-shell
|
tiling-shell
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
package = flake.inputs.hyprland.packages.${pkgs.system}.hyprland;
|
# package = flake.inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||||
portalPackage = flake.inputs.hyprland-portal.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
|
# portalPackage = flake.inputs.hyprland-portal.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
|
||||||
};
|
};
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -3,19 +3,20 @@
|
||||||
hardware = {
|
hardware = {
|
||||||
graphics = {
|
graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
enable32Bit = true;
|
||||||
extraPackages = builtins.attrValues {
|
extraPackages = builtins.attrValues {
|
||||||
inherit (pkgs)
|
# inherit (pkgs)
|
||||||
amdvlk
|
# amdvlk
|
||||||
;
|
# ;
|
||||||
inherit (pkgs.rocmPackages.clr)
|
inherit (pkgs.rocmPackages.clr)
|
||||||
icd
|
icd
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
extraPackages32 = builtins.attrValues {
|
# extraPackages32 = builtins.attrValues {
|
||||||
inherit (pkgs.driversi686Linux)
|
# inherit (pkgs.driversi686Linux)
|
||||||
amdvlk
|
# amdvlk
|
||||||
;
|
# ;
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
boot.initrd.kernelModules = [
|
boot.initrd.kernelModules = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue