Compare commits
3 Commits
5db7c62dd1
...
ccb1899da3
| Author | SHA1 | Date | |
|---|---|---|---|
| ccb1899da3 | |||
| 469495fc5c | |||
| cfdf6443d3 |
@@ -16,6 +16,7 @@
|
|||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_6_8;
|
boot.kernelPackages = pkgs.linuxPackages_6_8;
|
||||||
|
boot.kernelParams = ["amd_pstate=active"];
|
||||||
boot.supportedFilesystems = ["ntfs"];
|
boot.supportedFilesystems = ["ntfs"];
|
||||||
|
|
||||||
networking.hostName = "nixos"; # Define your hostname.
|
networking.hostName = "nixos"; # Define your hostname.
|
||||||
@@ -31,6 +32,11 @@
|
|||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Moscow";
|
time.timeZone = "Europe/Moscow";
|
||||||
|
|
||||||
|
environment.sessionVariables = rec {
|
||||||
|
# fixing disappering cursor in alacritty - https://github.com/NixOS/nixpkgs/issues/22652
|
||||||
|
XCURSOR_THEME = "Vimix-cursors";
|
||||||
|
};
|
||||||
|
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
i18n.defaultLocale = "ru_RU.UTF-8";
|
i18n.defaultLocale = "ru_RU.UTF-8";
|
||||||
|
|
||||||
@@ -86,6 +92,8 @@
|
|||||||
#media-session.enable = true;
|
#media-session.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.cpupower-gui.enable = true;
|
||||||
|
|
||||||
# Enable touchpad support (enabled default in most desktopManager).
|
# Enable touchpad support (enabled default in most desktopManager).
|
||||||
# services.xserver.libinput.enable = true;
|
# services.xserver.libinput.enable = true;
|
||||||
|
|
||||||
@@ -117,11 +125,19 @@
|
|||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
alacritty
|
||||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
git
|
git
|
||||||
tmux
|
tmux
|
||||||
|
ripgrep
|
||||||
|
dig
|
||||||
|
xclip
|
||||||
wget
|
wget
|
||||||
gparted
|
gparted
|
||||||
|
inkscape
|
||||||
|
cpupower-gui
|
||||||
|
ryzenadj
|
||||||
|
powertop
|
||||||
python312
|
python312
|
||||||
nodejs_20
|
nodejs_20
|
||||||
cascadia-code
|
cascadia-code
|
||||||
@@ -129,9 +145,14 @@
|
|||||||
vimix-cursors
|
vimix-cursors
|
||||||
vimix-icon-theme
|
vimix-icon-theme
|
||||||
vimix-gtk-themes
|
vimix-gtk-themes
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
iosevka
|
||||||
|
ubuntu_font_family
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
# programs.mtr.enable = true;
|
# programs.mtr.enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user