1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

add home-manager package

This commit is contained in:
andrey_varnavskiy
2024-12-16 06:09:02 +05:00
parent d8f464f9bc
commit c9f37e16a4
2 changed files with 16 additions and 16 deletions

View File

@@ -1,13 +1,13 @@
{ stateVersion, hostname, ... }:
{ pkgs, stateVersion, hostname, ... }:
{
imports =
[
./hardware-configuration.nix
../../nixos/packages.nix
./local-packages.nix
../../nixos/modules
];
imports = [
./hardware-configuration.nix
./local-packages.nix
../../nixos/modules
];
environment.systemPackages = [ pkgs.home-manager ];
networking.hostName = hostname;

View File

@@ -1,13 +1,13 @@
{ stateVersion, hostname, ... }:
{ pkgs, stateVersion, hostname, ... }:
{
imports =
[
./hardware-configuration.nix
../../nixos/packages.nix
./local-packages.nix
../../nixos/modules
];
imports = [
./hardware-configuration.nix
./local-packages.nix
../../nixos/modules
];
environment.systemPackages = [ pkgs.home-manager ];
networking.hostName = hostname;