1
1
Fork 0

Add inputs to flake, remove unnecessary boilerplate

main
Bill Ewanick 2023-09-21 11:58:40 -04:00
parent 744dcd462f
commit 1324b96475
2 changed files with 2 additions and 5 deletions

View File

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, lib, ... }:
{ inputs, config, pkgs, lib, ... }:
{
imports =

View File

@ -8,11 +8,8 @@
outputs = inputs@{ nixpkgs, ... }:
{
nixosConfigurations.linode-nixos =
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
];