before trying flakes (pray for me)

This commit is contained in:
Weckyy702
2026-01-12 00:09:36 +01:00
parent 84534b0ea1
commit 6122cba650
11 changed files with 2252 additions and 41 deletions

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";
};
}