working on zsh

This commit is contained in:
2026-03-09 20:09:01 +01:00
parent 9449445970
commit 2e4c07dbb5
3 changed files with 337 additions and 347 deletions
+335 -335
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -641,7 +641,7 @@ This is top file of this level which contains just an import statement for all r
./office_productivity/top.nix ./office_productivity/top.nix
./terminal_shell/top.nix ./terminal_shell/top.nix
]; ];
# .. put any code here nixpkgs.config.allowUnfree = true;
} }
#+END_SRC #+END_SRC
@@ -650,7 +650,6 @@ This will import all packages listed in ./assets/common/apps/packlages.conf
#+BEGIN_SRC nix :tangle generated/system/applications/packages.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/system/applications/packages.nix :noweb tangle :mkdirp yes :eval never-html
{ config, lib, pkgs, flakeRoot, inputs, ... }: { config, lib, pkgs, flakeRoot, inputs, ... }:
let let
nixpkgs.config.allowUnfree = true;
packagesConfPath = "${flakeRoot}/assets/common/apps/packages.conf"; packagesConfPath = "${flakeRoot}/assets/common/apps/packages.conf";
raw = builtins.readFile packagesConfPath; raw = builtins.readFile packagesConfPath;
# IMPORTANT: explicit "\n" so we never accidentally split into characters # IMPORTANT: explicit "\n" so we never accidentally split into characters
+1 -10
View File
@@ -1,12 +1,4 @@
{ { config, pkgs, lib, user, inputs, flakeRoot,... }:
config,
pkgs,
lib,
user,
inputs,
flakeRoot,
...
}:
{ {
imports = [ imports = [
./packages.nix ./packages.nix
@@ -18,6 +10,5 @@
./office_productivity/top.nix ./office_productivity/top.nix
./terminal_shell/top.nix ./terminal_shell/top.nix
]; ];
# Enable unfree packages globally
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
} }