Compare commits

..

No commits in common. "5f7690ce58709a05b4bfe52ebf9ba1574d2e5085" and "b3000958b4ce32c5481932737dad079a0b52331a" have entirely different histories.

3 changed files with 13 additions and 18 deletions

View File

@ -11,7 +11,6 @@ in
{
imports = [
./hardware-configuration.nix
./system-packages.nix
./home-manager.nix
];
@ -95,6 +94,17 @@ 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,9 +12,8 @@ in
home-manager.users.${user} = { pkgs, ... }: {
home.stateVersion = "22.11";
home.packages = [
pkgs.firefox # browser
pkgs.kitty # terminal
pkgs.pciutils # lspci command
pkgs.firefox
pkgs.kitty
];
};
}

View File

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