mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00
fixes
changelog: - wezterm always starts as new process now - deleted `hardware-configuration.nix` - added some fetchers - commented `nur` - disabled `opengl` - added qt theme inherited from gtk - removed deprecated notes about Yubikey from the README
This commit is contained in:
@@ -34,7 +34,7 @@ This repository houses my NixOS Linux ❄️ flake configuration, featuring the
|
|||||||
This system leverages cutting-edge channels and versions of software to provide you with the latest updates and features. Notably, it utilizes:
|
This system leverages cutting-edge channels and versions of software to provide you with the latest updates and features. Notably, it utilizes:
|
||||||
|
|
||||||
- **flake** (An experimental feature of the Nix package manager)
|
- **flake** (An experimental feature of the Nix package manager)
|
||||||
- **nur** (The Nix User Repository)
|
- ~~**nur** (The Nix User Repository)~~ *currently disabled
|
||||||
- **nixpkgs**: unstable
|
- **nixpkgs**: unstable
|
||||||
- **rust**: nightly version
|
- **rust**: nightly version
|
||||||
|
|
||||||
@@ -271,8 +271,6 @@ This repo contains a NixOS configuration file (`nixos/yubikey.nix`) enabling:
|
|||||||
🛡️ For enhanced security and a passwordless experience:
|
🛡️ For enhanced security and a passwordless experience:
|
||||||
You can consider a YubiKey Bio Series device. These keys support FIDO2/WebAuthn and FIDO U2F and has built in fingerprint scanner for strong authentication. Please note, they do not offer Smart card, OpenPGP, or OTP functionality.
|
You can consider a YubiKey Bio Series device. These keys support FIDO2/WebAuthn and FIDO U2F and has built in fingerprint scanner for strong authentication. Please note, they do not offer Smart card, OpenPGP, or OTP functionality.
|
||||||
|
|
||||||
⚠️ Important Note: From personal experience, YubiKey integration on NixOS can sometimes be buggy or unstable. Experiment with caution, especially when combining different configurations and Linux programs.
|
|
||||||
|
|
||||||
## 📜 License
|
## 📜 License
|
||||||
|
|
||||||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
||||||
|
@@ -207,7 +207,7 @@ bind = $mainMod, M, exec, pypr toggle_minimized
|
|||||||
bind = $mainMod CTRL, E, exec, pypr expose
|
bind = $mainMod CTRL, E, exec, pypr expose
|
||||||
bind = $mainMod, Z, exec, pypr zoom
|
bind = $mainMod, Z, exec, pypr zoom
|
||||||
|
|
||||||
bind = $mainMod, T, exec, wezterm
|
bind = $mainMod, T, exec, wezterm start --always-new-process
|
||||||
bind = $mainMod SHIFT, T, exec, telegram-desktop
|
bind = $mainMod SHIFT, T, exec, telegram-desktop
|
||||||
bind = $mainMod, B, exec, qutebrowser
|
bind = $mainMod, B, exec, qutebrowser
|
||||||
bind = $mainMod SHIFT, B, exec, brave
|
bind = $mainMod SHIFT, B, exec, brave
|
||||||
|
@@ -1,44 +0,0 @@
|
|||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
||||||
# and may be overwritten by future invocations. Please make changes
|
|
||||||
# to /etc/nixos/configuration.nix instead.
|
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports =
|
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
|
||||||
boot.blacklistedKernelModules = [ "nouveau" "nvidia" ]; # Disable NVIDIA video cards
|
|
||||||
boot.kernelParams = [ "i915.enable_guc=2" ];
|
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
|
||||||
boot.extraModulePackages = [ ];
|
|
||||||
|
|
||||||
# FIXME: Use your auto-generated `hardware-configuration.nix` instead of this file, you can tweak your `hardware-configuration.nix` using snippets from this file
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
||||||
# still possible to use this option, but it's recommended to use it in conjunction
|
|
||||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
||||||
networking.useDHCP = lib.mkDefault true;
|
|
||||||
# networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true;
|
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
||||||
|
|
||||||
nixpkgs.config.packageOverrides = pkgs: {
|
|
||||||
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
|
|
||||||
};
|
|
||||||
hardware.opengl = {
|
|
||||||
enable = true;
|
|
||||||
driSupport = true;
|
|
||||||
extraPackages = with pkgs; [
|
|
||||||
intel-compute-runtime
|
|
||||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
|
||||||
vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
|
|
||||||
vaapiVdpau
|
|
||||||
libvdpau-va-gl
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@@ -6,11 +6,13 @@
|
|||||||
onefetch
|
onefetch
|
||||||
ipfetch
|
ipfetch
|
||||||
cpufetch
|
cpufetch
|
||||||
|
ramfetch
|
||||||
starfetch
|
starfetch
|
||||||
octofetch
|
octofetch
|
||||||
htop
|
htop
|
||||||
bottom
|
bottom
|
||||||
btop
|
btop
|
||||||
|
zfxtop
|
||||||
kmon
|
kmon
|
||||||
|
|
||||||
# vulkan-tools
|
# vulkan-tools
|
||||||
|
@@ -5,9 +5,9 @@
|
|||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# Override packages
|
# Override packages
|
||||||
nixpkgs.config.packageOverrides = pkgs: {
|
# nixpkgs.config.packageOverrides = pkgs: {
|
||||||
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
# nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||||
inherit pkgs;
|
# inherit pkgs;
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
}
|
}
|
||||||
|
@@ -23,7 +23,6 @@
|
|||||||
services.tumbler.enable = true;
|
services.tumbler.enable = true;
|
||||||
services.fwupd.enable = true;
|
services.fwupd.enable = true;
|
||||||
services.auto-cpufreq.enable = true;
|
services.auto-cpufreq.enable = true;
|
||||||
hardware.opengl.enable = true;
|
|
||||||
# services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
# services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
@@ -5,6 +5,9 @@
|
|||||||
environment.variables.GTK_THEME = "Catppuccin-Macchiato-Standard-Teal-Dark";
|
environment.variables.GTK_THEME = "Catppuccin-Macchiato-Standard-Teal-Dark";
|
||||||
environment.variables.XCURSOR_THEME = "Catppuccin-Macchiato-Teal";
|
environment.variables.XCURSOR_THEME = "Catppuccin-Macchiato-Teal";
|
||||||
environment.variables.XCURSOR_SIZE = "24";
|
environment.variables.XCURSOR_SIZE = "24";
|
||||||
|
qt.enable = true;
|
||||||
|
qt.platformTheme = "gtk2";
|
||||||
|
qt.style = "gtk2";
|
||||||
console = {
|
console = {
|
||||||
earlySetup = true;
|
earlySetup = true;
|
||||||
colors = [
|
colors = [
|
||||||
|
Reference in New Issue
Block a user