mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nix: refactor system.stateVersion
This commit is contained in:
parent
32d661d54d
commit
b528b1a966
7 changed files with 21 additions and 16 deletions
|
|
@ -5,6 +5,8 @@ let
|
|||
in
|
||||
|
||||
{
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
home = {
|
||||
username = "ychiang";
|
||||
homeDirectory = "/udd/ychiang";
|
||||
|
|
@ -12,7 +14,8 @@ in
|
|||
|
||||
home.packages = [ myPkgs.necrolib ];
|
||||
|
||||
home.file.".local/share/fonts/truetype".source = "${myPkgs.altiosevka-nerd-font-mono}/share/fonts/truetype";
|
||||
home.file.".local/share/fonts/truetype".source =
|
||||
"${myPkgs.altiosevka-nerd-font-mono}/share/fonts/truetype";
|
||||
|
||||
# it gets turned off so I need to run it more frequently
|
||||
nix.gc.frequency = lib.mkForce "3 hours";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
home = {
|
||||
username = "ubuntu";
|
||||
homeDirectory = "/home/ubuntu";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue