fix different vscode, the brain dead way

This commit is contained in:
Tristan 2023-04-25 18:13:50 +01:00
parent be05c654bc
commit 782e7da908
5 changed files with 30 additions and 21 deletions

View file

@ -13,19 +13,24 @@
};
outputs = { nixpkgs, home-manager, hyprland, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
lib = nixpkgs.lib;
mkConf = import ./lib/mkconf.nix;
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
lib = nixpkgs.lib;
mkConf = import ./lib/mkconf.nix;
user = "tristan";
in {
nixosConfigurations = {
zenix = mkConf "zenix" { inherit nixpkgs system user home-manager hyprland; };
FCS-Tristan-Nixbook = mkConf "work" { inherit nixpkgs system user home-manager hyprland; };
user = "tristan";
in
{
nixosConfigurations = {
zenix = mkConf "zenix" {
inherit pkgs nixpkgs system user home-manager hyprland;
};
FCS-Tristan-Nixbook = mkConf "work" {
inherit pkgs nixpkgs system user home-manager hyprland;
};
};
};
};
}