fix: NixOS | clean up config arguments
This commit is contained in:
@@ -36,12 +36,10 @@
|
||||
];
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
meta = {
|
||||
hostname = host;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
"${user}" = home-manager.lib.homeManagerConfiguration {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user