forgot a few things
This commit is contained in:
parent
8d897f8ec1
commit
7c9307a2cf
3 changed files with 28 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
||||||
./display.nix
|
./display.nix
|
||||||
./locale.nix
|
./locale.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
./nixpkgs.nix
|
||||||
|
./programs.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
5
hosts/laptop-server/modules/nixpkgs.nix
Normal file
5
hosts/laptop-server/modules/nixpkgs.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ inputs, ... }:
|
||||||
|
{
|
||||||
|
# Allow closed source packages
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
}
|
21
hosts/laptop-server/modules/programs.nix
Normal file
21
hosts/laptop-server/modules/programs.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
# Install system packages
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Basic necessities
|
||||||
|
wget
|
||||||
|
curl
|
||||||
|
neovim
|
||||||
|
home-manager
|
||||||
|
# VCS
|
||||||
|
git
|
||||||
|
jujutsu
|
||||||
|
];
|
||||||
|
|
||||||
|
# Install zsh
|
||||||
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
|
# Disable default command-not-found (it doesn't work with flakes)
|
||||||
|
programs.command-not-found.enable = false;
|
||||||
|
programs.nix-index.enable = true;
|
||||||
|
}
|
Loading…
Reference in a new issue