31 lines
715 B
Nix
31 lines
715 B
Nix
{ 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";
|
||
};
|
||
}
|