2024-04-18 01:05:45 +02:00
|
|
|
{ config, pkgs, home-manager, ... }:
|
2023-12-11 12:57:15 +01:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
(import "${home-manager}/nixos")
|
|
|
|
./code.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home-manager.users.gunalx = {
|
|
|
|
/* The home.stateVersion option does not have a default and must be set */
|
2024-01-14 21:00:30 +01:00
|
|
|
home.stateVersion = "23.11";
|
2023-12-11 12:57:15 +01:00
|
|
|
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|