listening to lsp suggestions
This commit is contained in:
parent
c72bb83af3
commit
3e5774ff8d
2 changed files with 5 additions and 5 deletions
|
@ -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 = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
# Set username and home directory
|
||||
|
|
Loading…
Add table
Reference in a new issue