NixOS-Config/home-manager/hosts/GLaDOS/GLaDOS-Lillian.nix

31 lines
782 B
Nix
Raw Normal View History

2023-10-26 16:48:06 +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
2023-12-28 12:47:58 +01:00
../../desktop/configuration.nix
2023-10-26 16:48:06 +02:00
];
2023-11-14 11:37:10 +01:00
home.packages = with pkgs; [
2024-01-05 12:41:08 +01:00
heroic
2023-11-14 11:37:10 +01:00
];
2023-10-26 16:48:06 +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-26 16:48:06 +02:00
}