This commit is contained in:
2024-06-17 17:26:25 +02:00
parent fedb376f65
commit 75b69aada8
9 changed files with 21 additions and 19 deletions

View File

@@ -103,6 +103,9 @@
#gnome.nautilus
lxqt.lxqt-policykit # provides a default authentication client for policykit
# for Haskell project
haskellPackages.zlib
];
hardware.pulseaudio.extraConfig = ''

View File

@@ -1,7 +1,11 @@
{ config, pkgs, ... }:
{
imports = [ ./programs/default-laptop.nix ./services ./default.nix ];
imports = [
./programs/default-laptop.nix
./services/default-laptop.nix
./default.nix
];
home.file."minlog".source =
config.lib.file.mkOutOfStoreSymlink "${pkgs.minlog}/share/minlog";

View File

@@ -0,0 +1,5 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [ cura ];
}

View File

@@ -2,6 +2,7 @@
imports = [
./alacritty
./anki
./cura
./discord
./dolphin
./dunst
@@ -28,7 +29,6 @@
./wallpaper
./xmonad
./zoom
./zlib
./zsh
./zulip
];

View File

@@ -27,7 +27,6 @@ in {
bufferline-nvim
catppuccin-nvim
cmp-buffer
coc-nvim
cmp-conjure
cmp-nvim-lua
cmp-nvim-lsp

View File

@@ -1,5 +0,0 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [ zlib ];
}

View File

@@ -0,0 +1,5 @@
{ pkgs, ... }:
{
imports = [ ./default.nix ./betterlockscreen ];
}

View File

@@ -1,5 +1,5 @@
{ pkgs, ... }:
{
imports = [ ./ssh-agent ./gpg-agent ./betterlockscreen ];
imports = [ ./ssh-agent ./gpg-agent ];
}

View File

@@ -9,22 +9,13 @@
hardware.pulseaudio.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings.General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
powerOnBoot = false;
};
environment.systemPackages = with pkgs; [
bluez
bluez-alsa
bluez-tools
gnome.networkmanager-vpnc
networkmanagerapplet
];
hardware.pulseaudio.extraConfig = ''
load-module module-bluetooth-policy
load-module module-bluetooth-discover
'';
services.blueman.enable = true;
}