base packages

This commit is contained in:
2026-04-15 00:23:48 +03:00
parent be62fb5285
commit 389e1288e9
2 changed files with 33 additions and 8 deletions
+9 -8
View File
@@ -8,6 +8,7 @@
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./packages.nix
]; ];
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
@@ -117,20 +118,20 @@
}; };
# Install firefox. # Install firefox.
programs.firefox.enable = true; # programs.firefox.enable = true;
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; # nixpkgs.config.allowUnfree = true;
# 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; [
# 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.
wget # wget
nano # nano
git # git
ntfs3g # ntfs3g
]; #];
# 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.
+24
View File
@@ -0,0 +1,24 @@
{ pkgs, ... }: {
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
# системное
wget
git
htop
btop
nvtopPackages.nvidia # чтобы чекать загрузку 3060
ntfs3g
# софт
firefox
vesktop
materialgram
# dev
#jetbrains.toolbox
vscode
docker
docker-compose
];
}