Update home-manager

This commit is contained in:
askiiart 2023-12-28 19:08:29 -06:00
parent b6a1aa34b8
commit 1a11adff62
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
4 changed files with 4 additions and 52 deletions

View file

@ -1,30 +0,0 @@
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "askiiart";
home.homeDirectory = "/home/askiiart";
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "23.11";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
imports = [
./packages.nix
];
programs.fish.enable = true;
programs.bash.enable = true;
}

View file

@ -1,22 +0,0 @@
{ config, pkgs, ... }:
{
home.packages = [
pkgs.librewolf
pkgs.thunderbird
pkgs.vscode
pkgs.kitty
pkgs.git
pkgs.file
pkgs.git-credential-manager
pkgs.schildichat-desktop
pkgs.vesktop
pkgs.protonup-qt
pkgs.steam
pkgs.mate.eom
pkgs.neovim
pkgs.virt-manager
pkgs.youtube-music
pkgs.gparted
];
}

View file

@ -24,4 +24,7 @@
imports = [ imports = [
./packages.nix ./packages.nix
]; ];
programs.fish.enable = true;
programs.bash.enable = true;
} }

View file

@ -17,5 +17,6 @@
pkgs.neovim pkgs.neovim
pkgs.virt-manager pkgs.virt-manager
pkgs.youtube-music pkgs.youtube-music
pkgs.gparted
]; ];
} }