mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nix: tucked away home configurations
This commit is contained in:
parent
6d1844ebf0
commit
5b7839dde9
17 changed files with 3 additions and 3 deletions
30
nix/configurations/home/mertensia/default.nix
Normal file
30
nix/configurations/home/mertensia/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (pkgs) ghc-pin myPkgs;
|
||||
in
|
||||
{
|
||||
home = {
|
||||
username = "ychiang";
|
||||
homeDirectory = "/udd/ychiang";
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
ghc-pin.ghc
|
||||
ghc-pin.cabal-install
|
||||
ghc-pin.haskell-language-server
|
||||
myPkgs.necrolib
|
||||
];
|
||||
|
||||
home.file."hiosevka-font" = {
|
||||
source = "${myPkgs.hiosevka-nerd-font-mono}/share/fonts/truetype";
|
||||
target = "${config.home.homeDirectory}/.local/share/fonts/truetype";
|
||||
};
|
||||
|
||||
# it gets turned off so I need to run it more frequently
|
||||
nix.gc.frequency = lib.mkForce "3 hours";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue