cura
This commit is contained in:
@@ -103,6 +103,9 @@
|
||||
|
||||
#gnome.nautilus
|
||||
lxqt.lxqt-policykit # provides a default authentication client for policykit
|
||||
|
||||
# for Haskell project
|
||||
haskellPackages.zlib
|
||||
];
|
||||
|
||||
hardware.pulseaudio.extraConfig = ''
|
||||
|
||||
@@ -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";
|
||||
|
||||
5
home/programs/cura/default.nix
Normal file
5
home/programs/cura/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ cura ];
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
imports = [
|
||||
./alacritty
|
||||
./anki
|
||||
./cura
|
||||
./discord
|
||||
./dolphin
|
||||
./dunst
|
||||
@@ -28,7 +29,6 @@
|
||||
./wallpaper
|
||||
./xmonad
|
||||
./zoom
|
||||
./zlib
|
||||
./zsh
|
||||
./zulip
|
||||
];
|
||||
|
||||
@@ -27,7 +27,6 @@ in {
|
||||
bufferline-nvim
|
||||
catppuccin-nvim
|
||||
cmp-buffer
|
||||
coc-nvim
|
||||
cmp-conjure
|
||||
cmp-nvim-lua
|
||||
cmp-nvim-lsp
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ zlib ];
|
||||
}
|
||||
5
home/services/default-laptop.nix
Normal file
5
home/services/default-laptop.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./default.nix ./betterlockscreen ];
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./ssh-agent ./gpg-agent ./betterlockscreen ];
|
||||
imports = [ ./ssh-agent ./gpg-agent ];
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user