fix: removing unused binds with nil

This commit is contained in:
Ahurac 2024-10-09 14:06:35 +02:00
parent 535b40975b
commit 31a6cae16a
9 changed files with 7 additions and 11 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ pkgs, ... }:
{
imports = [ ../common/configuration.nix ./hardware-configuration.nix ];

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, ... }:
{ config, lib, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];

View file

@ -1,5 +1,3 @@
{ config, pkgs, ... }:
{
imports = [ ../common/home.nix ];

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ pkgs, ... }:
{
imports = [ ../common/configuration.nix ./hardware-configuration.nix ];

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, ... }:
{ config, lib, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];

View file

@ -1,5 +1,3 @@
{ config, pkgs, ... }:
{
imports = [ ../common/home.nix ];

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ lib, pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
home.username = "ahurac";

View file

@ -8,7 +8,7 @@
anyrun.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, flatpaks, anyrun, ... }@inputs: {
outputs = { nixpkgs, home-manager, flatpaks, anyrun, ... }: {
nixosConfigurations.ahrc-pc = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [