remove extra arguments

This commit is contained in:
Sean Buckley 2020-12-28 23:05:45 -05:00
parent 281b440c27
commit 9bbc41343b
7 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
{
system.autoUpgrade = {
enable = true;

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ pkgs, lib, ... }:
let
powerlineOpts = [
"-mode=flat"

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
brave

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
{
nixpkgs.overlays = [
(self: super: {

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
exiftool

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
let
ncfg = pkgs.writeText "neofetch.conf" ''
print_info() {

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
programs.sway.enable = true;