Updated packages. Fixes
- Updated packages - Fixed hyprlock config - Changed default file manager to yazi - added lazygit - added fzf
This commit is contained in:
parent
7809f0d574
commit
24a3ba6f99
5 changed files with 59 additions and 40 deletions
|
|
@ -71,12 +71,17 @@
|
|||
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.allowBroken = true;
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
kitty
|
||||
yazi
|
||||
tealdeer
|
||||
fzf
|
||||
lazygit
|
||||
kdePackages.qtwayland
|
||||
#libsForQt5.qt5.qtwayland
|
||||
#libsForQt5.qt5.qtsvg
|
||||
|
|
@ -144,6 +149,10 @@
|
|||
obs-studio
|
||||
vesktop
|
||||
vscode-fhs
|
||||
|
||||
# development
|
||||
clang_18
|
||||
dotnetCorePackages.sdk_8_0_3xx
|
||||
];
|
||||
programs.kdeconnect.enable = true;
|
||||
programs.kdeconnect.package = pkgs.kdePackages.kdeconnect-kde;
|
||||
|
|
@ -177,7 +186,10 @@
|
|||
font-awesome
|
||||
hack-font
|
||||
];
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
environment.sessionVariables = {
|
||||
NIXOS_OZONE_WL = "1";
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
hardware = {
|
||||
graphics = {
|
||||
enable = true;
|
||||
|
|
@ -259,7 +271,7 @@
|
|||
};
|
||||
stylix = {
|
||||
enable = true;
|
||||
image = ./hyprland/wallpaper.jpg;
|
||||
image = "${./hyprland/wallpaper.jpg}";
|
||||
autoEnable = true;
|
||||
opacity = {
|
||||
desktop = 0.5;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, stylix, ... }:
|
||||
|
||||
let
|
||||
#nur = import (builtins.fetchTarball {
|
||||
|
|
@ -19,7 +19,10 @@
|
|||
# manage.
|
||||
home.username = "kylekrein";
|
||||
home.homeDirectory = "/home/kylekrein";
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
targets.hyprlock.enable = false;
|
||||
};
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme.name = "qtct";
|
||||
|
|
@ -39,6 +42,11 @@
|
|||
"Kvantum/catppuccin-mocha".source = "${pkgs.catppuccin-kvantum}/share/Kvantum/catppuccin-mocha";
|
||||
};
|
||||
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
|
||||
#xdg.configFile."qt5ct/qt5ct.conf".source = (pkgs.formats.ini {}).generate "kvantum.kvconfig" {
|
||||
# Appearance.icon_theme = "Breeze Dark";
|
||||
# };
|
||||
|
|
|
|||
|
|
@ -41,7 +41,8 @@ in
|
|||
"$mod" = "SUPER";
|
||||
"$mainMod" = "$mod";
|
||||
"$terminal" = "${pkgs.kitty}/bin/kitty";
|
||||
"$fileManager" = "${pkgs.kdePackages.dolphin}/bin/dolphin";
|
||||
"$fileManager" = "$terminal ${pkgs.yazi}/bin/yazi";
|
||||
"$fileManager2" = "${pkgs.kdePackages.dolphin}/bin/dolphin";
|
||||
"$browser" = "${pkgs.firefox}/bin/firefox";
|
||||
"$menu" = "${pkgs.wofi}/bin/wofi --show drun";
|
||||
"$clipboardManager" = "$terminal --class clipse -e 'clipse'";
|
||||
|
|
@ -53,6 +54,7 @@ in
|
|||
"$mod, B, exec, $browser"
|
||||
"$mod SHIFT, V, togglefloating,"
|
||||
"$mod, C, exec, $fileManager"
|
||||
"$mod SHIFT, C, exec, $fileManager2"
|
||||
"$mod, F, fullscreen,"
|
||||
"$mod, R, exec, $menu"
|
||||
"$mod, V, exec, $clipboardManager"
|
||||
|
|
|
|||
|
|
@ -4,8 +4,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
background = {
|
||||
monitor = {
|
||||
#path = /home/me/someImage.png # supports png, jpg, webp (no animations, though)
|
||||
#path = ;
|
||||
color = "rgba(25, 20, 20, 1.0)";
|
||||
|
||||
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
|
||||
|
|
@ -16,10 +15,8 @@ background = {
|
|||
brightness = 0.8172;
|
||||
vibrancy = 0.1696;
|
||||
vibrancy_darkness = 0.0;
|
||||
};
|
||||
};
|
||||
input-field = {
|
||||
monitor = {
|
||||
size = "200, 50";
|
||||
outline_thickness = 3;
|
||||
dots_size = 0.33; # Scale of input-field height, 0.2 - 0.8
|
||||
|
|
@ -51,7 +48,6 @@ input-field = {
|
|||
position = "0, -20";
|
||||
halign = "center";
|
||||
valign = "center";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue