Compare commits

...

3 Commits

Author SHA1 Message Date
5f7690ce58 System package list 2023-04-16 20:24:48 +02:00
44eff6a42d Add separate system packages file 2023-04-16 20:24:39 +02:00
fd283b4c7c Add comments to packages 2023-04-16 20:24:32 +02:00
3 changed files with 18 additions and 13 deletions

View File

@ -11,6 +11,7 @@ in
{
imports = [
./hardware-configuration.nix
./system-packages.nix
./home-manager.nix
];
@ -94,17 +95,6 @@ in
shell = pkgs.fish;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
wget
hyprland
wayland
xdg-utils
pciutils
];
# Allow unfree packages
nixpkgs.config.allowUnfree = true;

View File

@ -12,8 +12,9 @@ in
home-manager.users.${user} = { pkgs, ... }: {
home.stateVersion = "22.11";
home.packages = [
pkgs.firefox
pkgs.kitty
pkgs.firefox # browser
pkgs.kitty # terminal
pkgs.pciutils # lspci command
];
};
}

14
system-packages.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
wget
hyprland
wayland
xdg-utils
];
}