rename home.nix to packages.nix

This commit is contained in:
caandt 2024-12-20 21:13:24 -05:00
parent 26093e6884
commit 39f2ca010f
2 changed files with 8 additions and 5 deletions

View file

@ -1,12 +1,18 @@
{...}: {
{
config,
lib,
...
}: {
imports = [
./autostart.nix
./bin
./config
./home.nix
./options.nix
./packages.nix
./share
./theme.nix
./xdg.nix
];
home.homeDirectory = lib.mkDefault "/home/${config.home.username}";
home.stateVersion = "24.05";
}

View file

@ -1,11 +1,9 @@
{
config,
lib,
pkgs,
pkgs-stable,
...
}: {
home.homeDirectory = lib.mkDefault "/home/${config.home.username}";
home.packages = with pkgs; [
(pkgs.symlinkJoin {
name = "firefox";
@ -109,5 +107,4 @@
extraOutputsToInstall = ["dev"];
}))
];
home.stateVersion = "24.05";
}