NixOS-Config/home-manager/hosts/EDI/lillian.nix

31 lines
770 B
Nix
Raw Normal View History

2023-10-23 17:15:54 +02:00
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# You can import other home-manager modules here
imports = [
# If you want to use modules your own flake exports (from modules/home-manager):
# outputs.homeManagerModules.example
# Or modules exported from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModules.default
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
2024-02-07 13:50:03 +01:00
../../desktop
2024-04-29 20:32:19 +02:00
../../shared
2023-10-23 17:43:30 +02:00
];
2023-10-23 17:15:54 +02:00
2024-02-06 10:13:06 +01:00
home.packages = with pkgs; [
];
2023-10-23 17:15:54 +02:00
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
2024-01-06 16:14:46 +01:00
home.stateVersion = "24.05";
2023-10-23 17:15:54 +02:00
}