Move packages into host's 'home.nix'

This commit is contained in:
2025-10-05 13:55:17 +02:00
parent f25bab5d77
commit 9f821cd286
2 changed files with 13 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
home.stateVersion = "25.05";
@@ -6,7 +6,16 @@
home.username = "h";
home.homeDirectory = "/home/h";
home.file.".inputrc".source = ../../dots/.inputrc;
programs = {
home-manager.enable = true;
git.enable = true;
firefox.enable = true;
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
kitty
neovim
];
home.file.".inputrc".source = ../../dots/.inputrc;
}