Skip to content

Commit

Permalink
fix(nixos): show current using home-manager version
Browse files Browse the repository at this point in the history
  • Loading branch information
misumisumi committed May 4, 2024
1 parent 51b2080 commit b851719
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nixos/testEnv.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{ inputs, pkgs, ... }:
let
testSettings = {
testSettings = { config, ... }: {
warnings = [
"home-manager version: ${config.home.version.release}"
];
home = {
username = "hm-user";
homeDirectory = "/home/hm-user";
stateVersion = "24.05";
stateVersion = config.home.version.release;
};
xdg.enable = true;
programs = {
Expand Down

0 comments on commit b851719

Please sign in to comment.