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";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = github:nix-community/home-manager;
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
outputs = inputs@{nixpkgs, home-manager, ...}:
|
outputs = {nixpkgs, home-manager, ...}:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations.nixdesktop = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.nixdesktop = pkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit system; };
|
specialArgs = { inherit system; };
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nixConfigurations.nixsurface = nixpkgs.lib.nixosSystem {
|
nixConfigurations.nixsurface = pkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit system; };
|
specialArgs = { inherit system; };
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Set username and home directory
|
# Set username and home directory
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue