mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 12:20:04 +00:00
✨ update gnome config, add ghostty, last commit of v1
This commit is contained in:
parent
84bfdec3f2
commit
5087472710
10 changed files with 348 additions and 156 deletions
|
@ -39,10 +39,10 @@ in
|
|||
};
|
||||
};
|
||||
blur-my-shell = {
|
||||
enable-blur = mkOpt bool true "Whether to enable blur-my-shell application blur.";
|
||||
enable-blur = mkOpt bool false "Whether to enable blur-my-shell application blur.";
|
||||
};
|
||||
};
|
||||
wallpaper = mkOpt str (builtins.toString ./wallpapers/car-wreck.png) "Specify the path of your prefered Gnome wallpaper.";
|
||||
wallpaper = mkOpt str (builtins.toString ./wallpapers/abstract/amber-d.jxl) "Specify the path of your prefered Gnome wallpaper.";
|
||||
};
|
||||
|
||||
config = mkIf osConfig.${namespace}.desktop.gnome.enable {
|
||||
|
@ -80,98 +80,9 @@ in
|
|||
picture-uri = cfg.wallpaper;
|
||||
picture-uri-dark = cfg.wallpaper;
|
||||
};
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
|
||||
home.file.".local/share/themes/catppuccin-macchiato/gnome-shell/gnome-shell.css".text = ''
|
||||
#panel {
|
||||
|
||||
/*background-color: #131313;*/
|
||||
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
|
||||
/*background-color: transparent;*/
|
||||
|
||||
font-weight: bold;
|
||||
|
||||
/*height: 2.2em;*/
|
||||
|
||||
height: 2.3em;
|
||||
|
||||
transition-duration: 250ms;
|
||||
|
||||
/*Custom panel settings */
|
||||
|
||||
/*margin: 5px 35px 0 35px;*/
|
||||
|
||||
margin: 5px 22px 0 22px;
|
||||
|
||||
border-radius: 10px;
|
||||
|
||||
#panel .panel-button {
|
||||
|
||||
background-color: rgba(19, 19, 19, 0.8);
|
||||
|
||||
font-weight: bold;
|
||||
|
||||
/*color: #f2f2f2;*/
|
||||
|
||||
/*color: #131313;*/
|
||||
|
||||
-natural-hpadding: 12px;
|
||||
|
||||
-minimum-hpadding: 6px;
|
||||
|
||||
transition-duration: 150ms;
|
||||
|
||||
border: 0px solid transparent;
|
||||
|
||||
/*border: none;*/
|
||||
|
||||
/*border-radius: 99px;*/
|
||||
|
||||
border-radius: 10px;
|
||||
|
||||
/*margin: 5px;*/
|
||||
|
||||
margin-left: 5px;
|
||||
|
||||
margin-right: 5px;
|
||||
|
||||
#panel .panel-button:active,
|
||||
|
||||
#panel .panel-button:overview,
|
||||
|
||||
#panel .panel-button:focus,
|
||||
|
||||
#panel .panel-button:checked {
|
||||
|
||||
box-shadow: inset 0 0 0 100px rgba(242, 242, 242, 0.2);
|
||||
|
||||
/*background-color: #8c7feb;*/
|
||||
|
||||
background-color: #b299d1;
|
||||
|
||||
/*background-color: #b299d1;*/
|
||||
|
||||
/*color: #8c7feb;*/
|
||||
|
||||
color: #131313;
|
||||
|
||||
/*background-color: rgba(163, 153, 235, 1);*/
|
||||
|
||||
}
|
||||
|
||||
#panel .panel-button:hover {
|
||||
|
||||
box-shadow: inset 0 0 0 100px rgba(242, 242, 242, 0.15);
|
||||
|
||||
background-color: #a399eb;
|
||||
|
||||
color: #131313;
|
||||
|
||||
/*box-shadow: inset 0 0 0 100px rgba(183, 176, 235, 0.15);*/
|
||||
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
BIN
modules/home/desktop/gnome/wallpapers/abstract/amber-d.jxl
Normal file
BIN
modules/home/desktop/gnome/wallpapers/abstract/amber-d.jxl
Normal file
Binary file not shown.
BIN
modules/home/desktop/gnome/wallpapers/abstract/amber-l.jxl
Normal file
BIN
modules/home/desktop/gnome/wallpapers/abstract/amber-l.jxl
Normal file
Binary file not shown.
|
@ -10,7 +10,7 @@ in {
|
|||
options.${namespace}.common.audio = { enable = mkEnableOption "whether to enable common audio support and tweaks"; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
hardware.pulseaudio.enable = false;
|
||||
services.pulseaudio.enable = false;
|
||||
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
|
|
|
@ -11,7 +11,7 @@ in {
|
|||
options.${namespace}.common.bluetooth = { enable = mkEnableOption "Enable bluetooth support on your current system"; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [ bluez blueman ];
|
||||
environment.systemPackages = with pkgs; [ bluez ];
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
|
|
|
@ -15,7 +15,6 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
networking.networkmanager = {
|
||||
enable = true;
|
||||
wifi.powersave = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue