This commit is contained in:
2024-04-02 00:11:28 +01:00
parent 4a01d7e936
commit 3f9eed307f
3 changed files with 16 additions and 0 deletions
+2
View File
@@ -161,6 +161,7 @@ nixpkgs.overlays = [
}; };
home-manager = { home-manager = {
useGlobalPkgs = true;
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
users = { users = {
"liamm" = import ./home.nix; "liamm" = import ./home.nix;
@@ -195,6 +196,7 @@ nixpkgs.overlays = [
extraPortals = with pkgs;[ extraPortals = with pkgs;[
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
xdg-desktop-portal-wlr xdg-desktop-portal-wlr
xdg-desktop-portal-hyprland
]; ];
config = { config = {
common = { common = {
+5
View File
@@ -7,6 +7,7 @@
imports = [ imports = [
../../modules/home-manager/dunst.nix ../../modules/home-manager/dunst.nix
../../modules/home-manager/terminals/alacritty.nix ../../modules/home-manager/terminals/alacritty.nix
../../modules/desktop/bluetooth.nix
]; ];
# You should not change this value, even if you update Home Manager. If you do # You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager # want to update the value, then make sure to first check the Home Manager
@@ -36,10 +37,12 @@
gnome.gnome-keyring gnome.gnome-keyring
gnome.gvfs gnome.gvfs
gnome.nautilus gnome.nautilus
grim
grimblast grimblast
# gvfs # gvfs
htop htop
keepassxc keepassxc
libsForQt5.polkit-kde-agent
libtool libtool
libreoffice libreoffice
minecraft minecraft
@@ -59,6 +62,7 @@
thunderbird thunderbird
tree tree
wev wev
xdg-user-dirs
# etcher ## Currently Uses Electron-19 -- which is marked EOL # etcher ## Currently Uses Electron-19 -- which is marked EOL
]; ];
@@ -244,6 +248,7 @@
# BEGIN SERVICES # BEGIN SERVICES
services = { services = {
blueman-applet.enable = true; blueman-applet.enable = true;
network-manager-applet.enable = true;
emacs = { emacs = {
enable = true; enable = true;
package = pkgs.emacs-gtk; package = pkgs.emacs-gtk;
+9
View File
@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ blueman ];
services = {
mpris-proxy.enable = true;
blueman-applet.enable = true;
};
}