nix: tucked away home configurations

This commit is contained in:
Primrose 2024-07-12 23:26:05 +02:00
parent 6d1844ebf0
commit 5b7839dde9
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
17 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,29 @@
{ pkgs, ... }:
let
inherit (pkgs) myPkgs ghc-pin;
in
{
imports = [ ./fonts.nix ];
home.packages = [
ghc-pin.ghc
ghc-pin.haskell-language-server
pkgs.qmk
pkgs.wally-cli
# pkgs.cargo
pkgs.nix-inspect
# pkgs.nix-visualize
# pkgs.nix-du
pkgs.deploy-rs
pkgs.audio-lint
# pkgs.hbrainfuck
# pkgs.prop-solveur
myPkgs.maeel
pkgs.docker
pkgs.docker-compose
pkgs.colima
];
}

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
let
inherit (pkgs) myPkgs;
in
{
home.packages = [
myPkgs.hiosevka-nerd-font-mono
pkgs.jetbrains-mono
pkgs.lmodern
pkgs.cascadia-code
];
}