first home manager move
This commit is contained in:
parent
a73e4ab2a9
commit
4550213468
2 changed files with 14 additions and 1 deletions
|
@ -36,7 +36,7 @@ in
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" "docker" "vboxusers"];
|
extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" "docker" "vboxusers"];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
firefox chromium alacritty zsh keepass fontconfig go nodejs rustup gcc gdb
|
keepass fontconfig nodejs rustup gcc gdb
|
||||||
binutils xclip pkgconfig veracrypt gitAndTools.diff-so-fancy
|
binutils xclip pkgconfig veracrypt gitAndTools.diff-so-fancy
|
||||||
gnome3.gnome-shell-extensions chrome-gnome-shell gnomeExtensions.clipboard-indicator
|
gnome3.gnome-shell-extensions chrome-gnome-shell gnomeExtensions.clipboard-indicator
|
||||||
gnomeExtensions.caffeine gnomeExtensions.no-title-bar
|
gnomeExtensions.caffeine gnomeExtensions.no-title-bar
|
||||||
|
|
13
nixos/home.nix
Normal file
13
nixos/home.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
programs = {
|
||||||
|
home-manager.enable = true;
|
||||||
|
firefox.enable = true;
|
||||||
|
chromium.enable = true;
|
||||||
|
alacritty.enable = true;
|
||||||
|
zsh.enable = true;
|
||||||
|
go.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue