qutebrowser???git commit -m pipewire
This commit is contained in:
parent
63ed764946
commit
8bd2bb2da3
6 changed files with 64 additions and 20 deletions
|
@ -15,10 +15,14 @@
|
||||||
desktop = {
|
desktop = {
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
bspwm.enable = true;
|
bspwm.enable = true;
|
||||||
|
apps = {
|
||||||
|
qutebrowser.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
hardware = {
|
hardware = {
|
||||||
nvidia.enable = true;
|
nvidia.enable = true;
|
||||||
pipewire.enable = true;
|
pipewire.enable = true;
|
||||||
|
bluetooth.enable = true;
|
||||||
};
|
};
|
||||||
shell = {
|
shell = {
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -29,19 +33,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Bluetooth
|
|
||||||
hardware.bluetooth = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
General = {
|
|
||||||
ControllerMode = "bredr";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
# i barely use bluetooth so keep it on demand
|
|
||||||
powerOnBoot = false;
|
|
||||||
};
|
|
||||||
services.blueman.enable = true;
|
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
# services.printing.enable = true;
|
# services.printing.enable = true;
|
||||||
|
|
||||||
|
@ -56,13 +47,6 @@
|
||||||
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
# qutebrowser
|
|
||||||
qutebrowser-qt6
|
|
||||||
# qute-keepassxc
|
|
||||||
python310Packages.pynacl
|
|
||||||
# adblock
|
|
||||||
python310Packages.adblock
|
|
||||||
# end qutebrowser
|
|
||||||
keepassxc
|
keepassxc
|
||||||
tree
|
tree
|
||||||
dmenu
|
dmenu
|
||||||
|
|
5
modules/desktop/apps/default.nix
Normal file
5
modules/desktop/apps/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./qutebrowser
|
||||||
|
];
|
||||||
|
}
|
30
modules/desktop/apps/qutebrowser/default.nix
Normal file
30
modules/desktop/apps/qutebrowser/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.apps.qutebrowser;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.apps.qutebrowser = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
qutebrowser-qt6
|
||||||
|
python310Packages.pynacl
|
||||||
|
python310Packages.adblock
|
||||||
|
];
|
||||||
|
|
||||||
|
home-manager.users.sako = { pkgs , ...}: {
|
||||||
|
xdg.configFile = {
|
||||||
|
"qutebrowser/config.py" = {
|
||||||
|
source = ../../../config/qutebrowser/config.py;
|
||||||
|
};
|
||||||
|
"qutebrowser/greasemonkey" = {
|
||||||
|
source = ../../../config/qutebrowser/greasemonkey;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./kitty
|
./kitty
|
||||||
./bspwm
|
./bspwm
|
||||||
|
./apps
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
23
modules/hardware/bluetooth/default.nix
Normal file
23
modules/hardware/bluetooth/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.hardware.bluetooth;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.hardware.bluetooth = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
ControllerMode = "bredr";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
powerOnBoot = false;
|
||||||
|
};
|
||||||
|
services.blueman.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./nvidia
|
./nvidia
|
||||||
./pipewire
|
./pipewire
|
||||||
|
./bluetooth
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue