Compare commits
No commits in common. "5f7690ce58709a05b4bfe52ebf9ba1574d2e5085" and "b3000958b4ce32c5481932737dad079a0b52331a" have entirely different histories.
5f7690ce58
...
b3000958b4
@ -11,7 +11,6 @@ in
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./system-packages.nix
|
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -95,6 +94,17 @@ in
|
|||||||
shell = pkgs.fish;
|
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
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
@ -12,9 +12,8 @@ in
|
|||||||
home-manager.users.${user} = { pkgs, ... }: {
|
home-manager.users.${user} = { pkgs, ... }: {
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.firefox # browser
|
pkgs.firefox
|
||||||
pkgs.kitty # terminal
|
pkgs.kitty
|
||||||
pkgs.pciutils # lspci command
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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
|
|
||||||
];
|
|
||||||
|
|
||||||
}
|
|
Reference in New Issue
Block a user