Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: Add my.deprecated nixos/home option

+18 -8
+1
nix/home/modules/default.nix
··· 25 25 ./de 26 26 ./development 27 27 ./gui 28 + ./llm 28 29 ./misc 29 30 ./nix 30 31 ./scripts
+7 -3
nix/home/modules/misc/default.nix
··· 1 1 { 2 - imports = [ 3 - ./llm 4 - ]; 2 + lib, 3 + osConfig ? {}, 4 + ... 5 + }: { 6 + options.my.deprecated = 7 + lib.mkEnableOption "deprecation marker" 8 + // {default = osConfig.my.deprecated or false;}; 5 9 }
+2 -2
nix/home/modules/misc/llm/default.nix nix/home/modules/llm/default.nix
··· 8 8 inherit (inputs.home-manager.lib) hm; 9 9 inherit (inputs.nix-std.lib) serde; 10 10 inherit (lib) mkIf mkEnableOption mkOption; 11 - cfg = config.my.misc.llm; 11 + cfg = config.my.llm; 12 12 in { 13 - options.my.misc.llm = { 13 + options.my.llm = { 14 14 enable = mkEnableOption "LLM tools"; 15 15 defaultModel = mkOption { 16 16 description = "Which model to use by default";
+1 -1
nix/home/profiles/llm/high.nix
··· 6 6 cfg = config.my.profiles.llm.high; 7 7 in { 8 8 options.my.profiles.llm.high = lib.mkEnableOption "High LLM preset profile"; 9 - config.my.misc.llm = lib.mkIf cfg { 9 + config.my.llm = lib.mkIf cfg { 10 10 enable = true; 11 11 defaultModel = "llama3"; 12 12 };
+1 -1
nix/home/profiles/llm/low.nix
··· 6 6 cfg = config.my.profiles.llm.low; 7 7 in { 8 8 options.my.profiles.llm.low = lib.mkEnableOption "Low LLM preset profile"; 9 - config.my.misc.llm = lib.mkIf cfg { 9 + config.my.llm = lib.mkIf cfg { 10 10 enable = true; 11 11 defaultModel = "tinyllama"; 12 12 };
+1 -1
nix/home/profiles/llm/mid.nix
··· 6 6 cfg = config.my.profiles.llm.mid; 7 7 in { 8 8 options.my.profiles.llm.mid = lib.mkEnableOption "Mid LLM preset profile"; 9 - config.my.misc.llm = lib.mkIf cfg { 9 + config.my.llm = lib.mkIf cfg { 10 10 enable = true; 11 11 defaultModel = "phi2"; 12 12 };
+1
nix/nixos/configs/steamdeck/default.nix
··· 14 14 ]; 15 15 16 16 my = { 17 + deprecated = true; 17 18 steamos.enable = true; 18 19 gaming.enable = false; 19 20 gaming.steam.enable = true;
+1
nix/nixos/modules/default.nix
··· 29 29 ./kdeconnect 30 30 ./kernel 31 31 ./locale 32 + ./misc 32 33 ./networking 33 34 ./nix 34 35 ./pipewire
+3
nix/nixos/modules/misc/default.nix
··· 1 + {lib, ...}: { 2 + options.my.deprecated = lib.mkEnableOption "deprecation marker"; 3 + }