This commit is contained in:
Weckyy702
2026-01-12 11:23:10 +01:00
parent 6122cba650
commit 0524def0ad
16 changed files with 154 additions and 41 deletions

30
home-manager/default.nix Normal file
View File

@@ -0,0 +1,30 @@
{ 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";
};
}