fix different vscode, the brain dead way
This commit is contained in:
parent
be05c654bc
commit
782e7da908
5 changed files with 30 additions and 21 deletions
31
flake.nix
31
flake.nix
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue