mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
rename modules folder to imports
This commit is contained in:
parent
ad16fd69f5
commit
ad704d807c
21 changed files with 12 additions and 12 deletions
27
imports/packages.nix
Normal file
27
imports/packages.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{pkgs, ...}: {
|
||||
environment = {
|
||||
defaultPackages = []; #don't install anything by default
|
||||
systemPackages = with pkgs; [
|
||||
efibootmgr #efi editor
|
||||
pciutils #lspci
|
||||
alsa-utils #volume control
|
||||
xclip #commandline clipboard access
|
||||
btrfs-progs #for external harddrive
|
||||
feh #for wallpaper
|
||||
|
||||
#directly used tui apps
|
||||
bottom #view tasks
|
||||
bc #terminal calculator
|
||||
nix-tree #view packages
|
||||
#pointless stuff
|
||||
cava #pretty audio
|
||||
pipes-rs # more fun things
|
||||
|
||||
#gui apps
|
||||
pavucontrol #gui volume control
|
||||
pcmanfm #file manager
|
||||
#big gui apps
|
||||
librewolf #best browser
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue