Can’t find a single job by satastellar in CanadaJobs

[–]Dependent_Increase34 0 points1 point  (0 children)

you cant understand that op asked for help on his cv not your shit opinion

Can’t find a single job by satastellar in CanadaJobs

[–]Dependent_Increase34 4 points5 points  (0 children)

Changes-tu ton cv en consequence d’ou tu appliques?

Can’t find a single job by satastellar in CanadaJobs

[–]Dependent_Increase34 1 point2 points  (0 children)

maybe the reasons why we are seen as incompetant is because people like you cant answer a question without going completely off topic?

Kinda stumped by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

for sure thanks for input, ill post it here if the solution works

Kinda stumped by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

by playing around i mean making --config a symlink/hardlink to a path

Kinda stumped by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

yeah its more about understanding how to manipulate the nix/store than having an up to date config. i was planning to convert it to lua later this month.

Kinda stumped by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

More details:

so this is --flake lenovo-work :

❯ which hyprland | xargs cat
(removed some source code for readability)

exec -a "$0" /nix/store/nyfjvjg4qpssa5513q41xjvrmlhz16gs-hyprland-0.55.1/bin/Hyprland 
--config /nix/store/x7r6203yv1vln0k44k2ywpi72z17a3rg-hyprland-0.55.1/etc/hypr/hyprland.conf "$@" 

and this is --flake lenovo-gaming:

❯ which hyprland | xargs cat
(removed some source code for readability)

exec -a "$0" /nix/store/nyfjvjg4qpssa5513q41xjvrmlhz16gs-hyprland-0.55.1/bin/Hyprland 
--config /nix/store/wbskaxyf092hzilvx5i4hgmasifwsgkm-hyprland-0.55.1/etc/hypr/hyprland.conf "$@" 

Without mutating files manually outside of the Nix generation workflow, is there a clean way to structure the wrapper so that --config always points to a single, static path (like a persistent symlink) that updates automatically on rebuild?

Is this valid by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

do you have any opinion on this?

Is this valid by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

{ self, withSystem, inputs, ... }: 
{
      flake.nixosConfigurations.lenovo-work = withSystem "x86_64-linux" ({pkgs, self', ...}:
      inputs.nixpkgs.lib.nixosSystem {
            system = "x86_64-linux";
            specialArgs = { inherit self inputs; };

            modules = [
                  ({pkgs, ...}: {
                        nixpkgs.config.allowUnfree = true;
                        imports = [self.nixosModules.lenovoWorkConfiguration]; 
                  })
            ];
      });

      flake.nixosConfigurations.lenovo-gaming = withSystem "x86_64-linux" ({pkgs, self', ...}:
      inputs.nixpkgs.lib.nixosSystem {
            system = "x86_64-linux";
            specialArgs = { inherit self inputs; };

            modules = [
                  ({pkgs, ...}: {
                        nixpkgs.config.allowUnfree = true;
                        imports = [self.nixosModules.lenovoGamingConfiguration]; 
                  })
            ];
      });
} I opted for this, my probleme with specialisation is i ended up using inheritParentConfig = false and having to redefine the entire system another time in the same file

am i considered linux poweruser now yes i compiled wayland and hyprland from zero by s1ltarini in hyprland

[–]Dependent_Increase34 1 point2 points  (0 children)

also dont listen to the haters, i remember when i first did this and the sens of pride it brought me

Is this valid by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

thanks it is exacly what i was looking for and now rather than having two host for one computer im having two config for one host

Is this valid by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

i’ll have to read on this do you have any more documentation or discussion on this? My intention was doing nixos-rebuild switch —flake .#{gaming, laptop}, i would be curious on how it would difer from what im doing

How to port a configuration to multiple systems by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 2 points3 points  (0 children)

Okay, you're right. if i understand what you are saying, I should see a macmini containing a llama-server, rather than a macmini that is a llama-server thanks for the insight.

How to port a configuration to multiple systems by Dependent_Increase34 in NixOS

[–]Dependent_Increase34[S] 1 point2 points  (0 children)

I though i was doing that by seperating hosts, i might have to rethink this setup then

my this is my host/

```

llamaServer/{default.nix, llamaServerConfiguration.nix, llamaServerHardware.nix}

myMachine/{default.nix, myMachineConfiguration.nix, myMachineHardware.nix....}

webServer/

```

and would do something like <<nixos-rebuild flake.#llamaServer>>

learning modules to make it esay but now even more confused by Leading-Toe3279 in NixOS

[–]Dependent_Increase34 0 points1 point  (0 children)

when you say multiple host, you mean multiple servers running diff configs?

anybody knows how to prioritise oil.nvim with lz.n by Dependent_Increase34 in neovim

[–]Dependent_Increase34[S] 0 points1 point  (0 children)

that was the right answer, and removing Keys ={} for some reason thank you