listening to lsp suggestions

This commit is contained in:
twoneis 2023-11-02 11:00:26 +01:00
parent c72bb83af3
commit 3e5774ff8d
2 changed files with 5 additions and 5 deletions

View file

@ -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 = [

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
{
# Set username and home directory