Cleanup and fixes, ginoza update

This commit is contained in:
foglar 2025-02-19 08:16:30 +01:00
parent eb4a707a71
commit bee4b01362
6 changed files with 31 additions and 29 deletions

View File

@ -39,6 +39,12 @@
- [ ] add syncthing configuration - [ ] add syncthing configuration
- [x] qutebrowser configuration - [x] qutebrowser configuration
- [ ] script dir set environment variable - [ ] script dir set environment variable
- [ ] eww configuration
- [ ] fix notifications
- [ ] add multiple themes
- [ ] customization of bg better
- [ ] fastfetch customization
- [ ] sddm theme
- [ ] update my home page and create new web - [ ] update my home page and create new web
- [ ] fix kde theme in stylix - [ ] fix kde theme in stylix

View File

@ -16,7 +16,7 @@
editor = "neovim"; # neovim, vscode editor = "neovim"; # neovim, vscode
# List all themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes # List all themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes
theme = "catppuccin-mocha"; # catppuccin-mocha, tokyo-night-dark, one-dark theme = "evangelion-blood"; # catppuccin-mocha, tokyo-night-dark, one-dark
background = background =
if userSettings.theme == "catppuccin-mocha" if userSettings.theme == "catppuccin-mocha"
then "aurora_borealis.png" then "aurora_borealis.png"
@ -29,7 +29,7 @@
height = 1080; height = 1080;
}; };
configuration_path = "/home/${username}/.dotfiles"; configuration_path = "/home/${username}/.dotfiles"; # Does nothing for now
plasma = false; plasma = false;
gnome = false; gnome = false;

View File

@ -1,4 +1,5 @@
{ {
pkgs,
pkgs-stable, pkgs-stable,
userSettings, userSettings,
... ...
@ -58,14 +59,17 @@
}; };
# User defined packages # User defined packages
home.packages = with pkgs-stable; [ home.packages =
libreoffice (with pkgs-stable; [
inkscape libreoffice
gimp inkscape
mpv gimp
loupe mpv
distrobox loupe
]; ])
++ (
with pkgs; [harmony-music]
);
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }

View File

@ -86,8 +86,6 @@
}; };
environment.systemPackages = [ environment.systemPackages = [
pkgs.gcc
inputs.install-script.packages.${system}.default inputs.install-script.packages.${system}.default
inputs.shinya-nvf.packages.${system}.nvf inputs.shinya-nvf.packages.${system}.nvf
]; ];
@ -97,14 +95,6 @@
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall. # Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];

View File

@ -2,6 +2,7 @@
lib, lib,
config, config,
pkgs, pkgs,
userSettings,
... ...
}: { }: {
options = { options = {
@ -10,17 +11,18 @@
config = lib.mkIf config.desktop.hyprland.rofi.clipboard.enable { config = lib.mkIf config.desktop.hyprland.rofi.clipboard.enable {
home.file = { home.file = {
".config/rofi/clip_bg.png".source = ../../../../config/backgrounds/${userSettings.background};
".config/rofi/cliboard.rasi".text = let ".config/rofi/cliboard.rasi".text = let
main-bg = config.lib.stylix.colors.base01; main-bg = config.lib.stylix.colors.base01;
main-fg = config.lib.stylix.colors.base02; main-fg = config.lib.stylix.colors.base02;
main-br = config.lib.stylix.colors.base05; main-br = config.lib.stylix.colors.base05;
main-ex = config.lib.stylix.colors.base09; main-ex = config.lib.stylix.colors.base09;
select-bg = config.lib.stylix.colors.base05; # Selected background color select-bg = config.lib.stylix.colors.base05; # Selected background color
select-fg = config.lib.stylix.colors.base11; # Selected text color select-fg = config.lib.stylix.colors.base11; # Selected text color
separatorcolor = "transparent"; separatorcolor = "transparent";
border-color = "transparent"; border-color = "transparent";
in '' in ''
// Config // // Config //
configuration { configuration {
modi: "drun"; modi: "drun";
show-icons: false; show-icons: false;
@ -64,7 +66,7 @@
expand: false; expand: false;
orientation: horizontal; orientation: horizontal;
background-color: transparent; background-color: transparent;
background-image: url("~/Pictures/backgrounds/aurora_borealis.png", width); //background-image: url("~/.config/rofi/clip_bg.png", width);
children: [ "wallframe" , "inputbar" ]; children: [ "wallframe" , "inputbar" ];
} }
wallframe { wallframe {
@ -73,7 +75,7 @@
padding: 0em; padding: 0em;
expand: false; expand: false;
background-color: @main-bg; background-color: @main-bg;
background-image: url("~/Pictures/backgrounds/aurora_borealis.png", height); //background-image: url("~/Pictures/backgrounds/cli_bg.png", height);
} }

View File

@ -80,11 +80,11 @@
targets = { targets = {
plymouth = { plymouth = {
logo = logo = lib.mkIf (userSettings.theme == "evangelion-blood") ../../../config/nerv.png;
if userSettings.theme == "evangelion-blood" logoAnimated =
then ../../../config/nerv.png if "evangelion-blood" == userSettings.theme
else ""; then false
logoAnimated = if "evangelion-blood" == userSettings.theme then false else true; else true;
}; };
}; };
}; };