From 3e5774ff8dfde5dc7eb9385651325710975f3f52 Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 2 Nov 2023 11:00:26 +0100 Subject: [PATCH] listening to lsp suggestions --- base-system/flake.nix | 8 ++++---- base-system/home.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base-system/flake.nix b/base-system/flake.nix index 58d24c9..ee71ee4 100644 --- a/base-system/flake.nix +++ b/base-system/flake.nix @@ -6,13 +6,13 @@ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { - url = github:nix-community/home-manager; + url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; - outputs = inputs@{nixpkgs, home-manager, ...}: + outputs = {nixpkgs, home-manager, ...}: let system = "x86_64-linux"; pkgs = import nixpkgs { @@ -24,7 +24,7 @@ }; in { - nixosConfigurations.nixdesktop = nixpkgs.lib.nixosSystem { + nixosConfigurations.nixdesktop = pkgs.lib.nixosSystem { specialArgs = { inherit system; }; modules = [ @@ -37,7 +37,7 @@ } ]; }; - nixConfigurations.nixsurface = nixpkgs.lib.nixosSystem { + nixConfigurations.nixsurface = pkgs.lib.nixosSystem { specialArgs = { inherit system; }; modules = [ diff --git a/base-system/home.nix b/base-system/home.nix index 14d845f..7ece974 100644 --- a/base-system/home.nix +++ b/base-system/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ ... }: { # Set username and home directory