fix: NixOS | clean up config arguments

This commit is contained in:
2025-01-31 23:04:43 +05:00
parent 820624ad7e
commit 214cf14e0d
2 changed files with 2 additions and 9 deletions

View File

@@ -36,12 +36,10 @@
];
specialArgs = {
inherit inputs;
meta = {
hostname = host;
};
};
};
};
homeConfigurations = {
"${user}" = home-manager.lib.homeManagerConfiguration {

View File

@@ -2,14 +2,9 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ inputs, hostname, pkgs, ... }:
{ inputs, pkgs, hostname, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;