mob next [ci-skip] [ci skip] [skip ci]

lastFile:machines/rana/configuration.nix
This commit is contained in:
2026-01-13 11:25:39 +07:00
parent 77499682da
commit 395c17822d
10 changed files with 107 additions and 51 deletions

View File

@@ -0,0 +1,25 @@
{
osConfig,
pkgs,
lib,
...
}:
let
username = "emmie";
in
{
home = {
inherit username;
homeDirectory = lib.mkForce "/home/${username}";
stateVersion = osConfig.system.stateVersion;
packages = with pkgs; [
libreoffice
element-desktop
brave
firefox
keepassxc
vlc
];
};
programs.home-manager.enable = true;
}