Files
nix-config/home-manager/default.nix
Weckyy702 0524def0ad WIP
2026-01-12 11:23:10 +01:00

31 lines
715 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{ config, pkgs, lib, ... }:
let
home-manager = builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz;
in
{
imports = [
(import "${home-manager}/nixos")
./zsh
./hyprland
];
home-manager.useGlobalPkgs = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.weckyy702 = {
isNormalUser = true;
description = "Weckyy702";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.zsh;
};
home-manager.users.weckyy702 = { pkgs, ... }: {
home.packages = with pkgs; [
firefox
bitwarden-desktop
];
#NOTE: MUST be kept in sync with the channel above!
home.stateVersion = "25.11";
};
}