WIP
This commit is contained in:
30
home-manager/default.nix
Normal file
30
home-manager/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user