Compare commits

...

3 Commits

Author SHA1 Message Date
Alyxia Sother fdcefe5c7e
[nix] Add a couple shell variables for Fy apps 2023-06-13 15:42:40 +02:00
Alyxia Sother 853afc9541
[nix] Rewrite the autoimport code 2023-06-13 15:42:39 +02:00
Alyxia Sother d857a6a0dc
[nix] Install plex and nerdfonts 2023-06-13 15:42:39 +02:00
2 changed files with 35 additions and 15 deletions

View File

@ -1,5 +1,6 @@
{ pkgs, lib, dotfiles, ... }: { pkgs, specialArgs, lib, dotfiles, ... }:
with lib;
let let
textEditor = "nvim"; textEditor = "nvim";
@ -66,9 +67,14 @@ let
ffmpeg ffmpeg
]; ];
everything = system ++ base ++ languages ++ programs ++ multimedia; fonts = [
nerdfonts
];
everything = system ++ base ++ languages ++ programs ++ multimedia ++ fonts;
}; };
# Old solution kept for posterity {{{
# We've got a small issue here. I tested this in a repl, and what I've # We've got a small issue here. I tested this in a repl, and what I've
# observed is that listFilesRecursive spits out [ /full/path/to/default.nix ], # observed is that listFilesRecursive spits out [ /full/path/to/default.nix ],
# while builtins.readDir spits out { "default.nix" = "regular"; } # while builtins.readDir spits out { "default.nix" = "regular"; }
@ -86,19 +92,30 @@ let
# be generated from the entire directory listing, it isn't going to work out. # be generated from the entire directory listing, it isn't going to work out.
# The solution was slightly modified from this Reddit answer: # The solution was slightly modified from this Reddit answer:
# <https://www.reddit.com/r/NixOS/comments/j5pa9o/comment/g81dvop/> # <https://www.reddit.com/r/NixOS/comments/j5pa9o/comment/g81dvop/>
# So, let's get all files in the current directory...
importMap = map
(n: "${n}")
(lib.filesystem.listFilesRecursive ./.);
# importMap = map # importMap = map
# (n: "${./.}/${n}") # (n: "${n}")
# (builtins.attrNames (builtins.readDir ./.)); # (lib.filesystem.listFilesRecursive ./.);
# importsFiltered =
# builtins.filter
# (x: !lib.strings.hasInfix "default" x)
# importMap;
# }}}
# And filter out default.nix getDir = dir: mapAttrs
importsFiltered = (file: type:
builtins.filter if type == "directory" then getDir "${dir}/${file}" else type
(x: !lib.strings.hasInfix "default" x) )
importMap; (builtins.readDir dir);
files = dir: collect isString (mapAttrsRecursive
(path: type: concatStringsSep "/" path)
(getDir dir));
validFiles = dir: map
(file: ./. + "/${file}")
(filter
(file: hasSuffix ".nix" file && file != "default.nix")
(files dir));
in in
{ {
@ -127,8 +144,8 @@ in
useUserPackages = true; useUserPackages = true;
extraSpecialArgs = { inherit dotfiles; }; extraSpecialArgs = { inherit dotfiles; };
users.alyxia = { pkgs, ... }: { users.alyxia = { pkgs, ... }: {
# Defined further above, a list of files to import. # Defined further above, generates a list of files to import.
imports = importsFiltered; imports = validFiles ./.;
home = { home = {
packages = packageSets.everything; packages = packageSets.everything;
@ -188,6 +205,7 @@ in
"itch" "itch"
"iterm2" "iterm2"
"obs" "obs"
"plexamp"
"raycast" "raycast"
"sequel-ace" "sequel-ace"
"shottr" "shottr"

View File

@ -8,6 +8,8 @@
source ${dotfiles}/zsh/zshrc source ${dotfiles}/zsh/zshrc
export PATH="$PATH:$HOME/.npm-packages/bin" export PATH="$PATH:$HOME/.npm-packages/bin"
export FRENYARD_SCALE=2.40
export RETHINK_API="https://rethink.alyxia.dev"
''; '';
}; };
} }