feat: add nix code formatter
This commit is contained in:
parent
231fd16756
commit
1fae0a73d3
52 changed files with 702 additions and 609 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
substituters = [
|
substituters = [
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
{ config
|
{
|
||||||
, home-manager
|
config,
|
||||||
, lib
|
home-manager,
|
||||||
, nixpkgs
|
lib,
|
||||||
, nixpkgs-wayland
|
nixpkgs,
|
||||||
, nix-index-database
|
nixpkgs-wayland,
|
||||||
, nh
|
nix-index-database,
|
||||||
, nur
|
nh,
|
||||||
, nix-melt
|
nur,
|
||||||
, nurl
|
nix-melt,
|
||||||
, coc-stylelintplus
|
nurl,
|
||||||
, pkgs
|
coc-stylelintplus,
|
||||||
, ...
|
pkgs,
|
||||||
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./cachix.nix
|
./cachix.nix
|
||||||
|
@ -29,7 +30,7 @@
|
||||||
nix = {
|
nix = {
|
||||||
# Edit nix.conf
|
# Edit nix.conf
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = ["nix-command" "flakes"];
|
||||||
keep-outputs = true;
|
keep-outputs = true;
|
||||||
keep-derivations = true;
|
keep-derivations = true;
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
|
@ -83,25 +84,23 @@
|
||||||
./home/tmux.nix
|
./home/tmux.nix
|
||||||
|
|
||||||
./device-vars.nix
|
./device-vars.nix
|
||||||
({ osConfig, ... }: {
|
({osConfig, ...}: {
|
||||||
services.device-vars = osConfig.services.device-vars;
|
services.device-vars = osConfig.services.device-vars;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = [
|
home.packages =
|
||||||
|
[
|
||||||
nix-melt.packages.x86_64-linux.default
|
nix-melt.packages.x86_64-linux.default
|
||||||
nurl.packages.x86_64-linux.default
|
nurl.packages.x86_64-linux.default
|
||||||
] ++
|
]
|
||||||
|
++ (with config.nur.repos.rycee; [
|
||||||
(with config.nur.repos.rycee; [
|
|
||||||
mozilla-addons-to-nix
|
mozilla-addons-to-nix
|
||||||
]) ++
|
])
|
||||||
|
++ (with pkgs.nodePackages; [
|
||||||
(with pkgs.nodePackages; [
|
|
||||||
undollar
|
undollar
|
||||||
]) ++
|
])
|
||||||
|
++ (with pkgs; [
|
||||||
(with pkgs; [
|
|
||||||
dracula-theme
|
dracula-theme
|
||||||
neofetch
|
neofetch
|
||||||
progress
|
progress
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, ... }: {
|
{lib, ...}: {
|
||||||
options.services.device-vars = with lib; {
|
options.services.device-vars = with lib; {
|
||||||
username = mkOption {
|
username = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
{ config, lib, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./programs.nix
|
./programs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
||||||
starship = let
|
starship = let
|
||||||
textColor = "#e3e5e5";
|
textColor = "#e3e5e5";
|
||||||
firstColor = "#bd93f9";
|
firstColor = "#bd93f9";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
programs = {
|
programs = {
|
||||||
fzf = {
|
fzf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
programs = {
|
programs = {
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
|
@ -9,7 +8,7 @@
|
||||||
userEmail = "matt@nelim.org";
|
userEmail = "matt@nelim.org";
|
||||||
|
|
||||||
includes = [
|
includes = [
|
||||||
{ path = "${pkgs.dracula-theme}/git-colors"; }
|
{path = "${pkgs.dracula-theme}/git-colors";}
|
||||||
];
|
];
|
||||||
|
|
||||||
delta = {
|
delta = {
|
||||||
|
|
2
common/home/neovim/base.lua
Normal file
2
common/home/neovim/base.lua
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
-- Add `:Format` command to format current buffer
|
||||||
|
vim.api.nvim_create_user_command("Format", "call CocAction('format')", {})
|
|
@ -1,6 +1,11 @@
|
||||||
{ pkgs, lib, ... }: let
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
# installs a vim plugin from git with a given tag / branch
|
# installs a vim plugin from git with a given tag / branch
|
||||||
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
plugin = owner: repo: rev: hash:
|
||||||
|
pkgs.vimUtils.buildVimPlugin {
|
||||||
pname = "${lib.strings.sanitizeDerivationName repo}";
|
pname = "${lib.strings.sanitizeDerivationName repo}";
|
||||||
version = rev;
|
version = rev;
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
|
@ -11,18 +16,17 @@
|
||||||
in {
|
in {
|
||||||
# TODO: make a gradle module and have java in device-vars.nix
|
# TODO: make a gradle module and have java in device-vars.nix
|
||||||
xdg.dataFile = {
|
xdg.dataFile = {
|
||||||
".gradle/gradle.properties".source =
|
".gradle/gradle.properties".source = pkgs.writeText "gradle.properties" ''
|
||||||
pkgs.writeText "gradle.properties" ''
|
|
||||||
org.gradle.java.home = ${pkgs.temurin-bin-17}
|
org.gradle.java.home = ${pkgs.temurin-bin-17}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
gradle
|
gradle
|
||||||
gradle-completion # FIXME: not working
|
gradle-completion # FIXME: not working
|
||||||
|
alejandra
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
||||||
java = {
|
java = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.temurin-bin-17;
|
package = pkgs.temurin-bin-17;
|
||||||
|
@ -95,8 +99,13 @@ in {
|
||||||
languageserver = {
|
languageserver = {
|
||||||
nix = {
|
nix = {
|
||||||
command = "nil";
|
command = "nil";
|
||||||
filetypes = [ "nix" ];
|
filetypes = ["nix"];
|
||||||
rootPatterns = [ "flake.nix" ];
|
rootPatterns = ["flake.nix"];
|
||||||
|
settings = {
|
||||||
|
nil = {
|
||||||
|
formatting = {command = ["alejandra"];};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -107,6 +116,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
extraConfig = fileContents ./base.vim;
|
extraConfig = fileContents ./base.vim;
|
||||||
|
extraLuaConfig = fileContents ./base.lua;
|
||||||
|
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
# Coc configured
|
# Coc configured
|
||||||
|
@ -173,9 +183,10 @@ in {
|
||||||
config = fileContents ./plugins/treesitter.vim;
|
config = fileContents ./plugins/treesitter.vim;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
plugin = (plugin "lukas-reineke" "indent-blankline.nvim"
|
plugin =
|
||||||
|
plugin "lukas-reineke" "indent-blankline.nvim"
|
||||||
"046e2cf04e08ece927bacbfb87c5b35c0b636546"
|
"046e2cf04e08ece927bacbfb87c5b35c0b636546"
|
||||||
"sha256-bhoep8aTYje5K/dZ/XmpwBPn4PBEMPrmw33QJdfFe6M=");
|
"sha256-bhoep8aTYje5K/dZ/XmpwBPn4PBEMPrmw33QJdfFe6M=";
|
||||||
type = "lua";
|
type = "lua";
|
||||||
config = fileContents ./plugins/indent.lua;
|
config = fileContents ./plugins/indent.lua;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
programs = {
|
programs = {
|
||||||
tmux = {
|
tmux = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
fonts = {
|
fonts = {
|
||||||
fontconfig = {
|
fontconfig = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
emoji = [ "Noto Color Emoji" ];
|
emoji = ["Noto Color Emoji"];
|
||||||
monospace = [ "Noto Nerd Font" ];
|
monospace = ["Noto Nerd Font"];
|
||||||
sansSerif = [ "Noto Nerd Font" ];
|
sansSerif = ["Noto Nerd Font"];
|
||||||
serif = [ "Noto Nerd Font" ];
|
serif = ["Noto Nerd Font"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
(nerdfonts.override { fonts = [
|
(nerdfonts.override {
|
||||||
|
fonts = [
|
||||||
"JetBrainsMono"
|
"JetBrainsMono"
|
||||||
"Go-Mono"
|
"Go-Mono"
|
||||||
"Iosevka"
|
"Iosevka"
|
||||||
|
@ -19,7 +20,8 @@
|
||||||
"SpaceMono"
|
"SpaceMono"
|
||||||
"Ubuntu"
|
"Ubuntu"
|
||||||
"Noto"
|
"Noto"
|
||||||
]; })
|
];
|
||||||
|
})
|
||||||
noto-fonts
|
noto-fonts
|
||||||
noto-fonts-cjk
|
noto-fonts-cjk
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
services = {
|
services = {
|
||||||
|
|
||||||
fwupd.enable = true;
|
fwupd.enable = true;
|
||||||
upower.enable = true;
|
upower.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
final: prev: {
|
final: prev: {
|
||||||
blueberry = prev.blueberry.overrideAttrs (o: {
|
blueberry = prev.blueberry.overrideAttrs (o: {
|
||||||
patches = (o.patches or [ ]) ++ [
|
patches =
|
||||||
|
(o.patches or [])
|
||||||
|
++ [
|
||||||
./patches/wayland.patch
|
./patches/wayland.patch
|
||||||
];
|
];
|
||||||
buildInputs = (o.buildInputs or [ ]) ++ [
|
buildInputs =
|
||||||
|
(o.buildInputs or [])
|
||||||
|
++ [
|
||||||
prev.libappindicator
|
prev.libappindicator
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ neovim-flake, ... }: {
|
{neovim-flake, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./dracula-theme.nix
|
./dracula-theme.nix
|
||||||
./regreet.nix
|
./regreet.nix
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: let
|
{pkgs, ...}: let
|
||||||
plymouth = pkgs.fetchFromGitHub {
|
plymouth = pkgs.fetchFromGitHub {
|
||||||
owner = "dracula";
|
owner = "dracula";
|
||||||
repo = "plymouth";
|
repo = "plymouth";
|
||||||
|
@ -27,9 +27,9 @@
|
||||||
hash = "sha256-f9FwSOSvqTeDj4bOjYUQ6TM+/carCD9o5dhg/MnP/lk=";
|
hash = "sha256-f9FwSOSvqTeDj4bOjYUQ6TM+/carCD9o5dhg/MnP/lk=";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
nixpkgs.overlays = [ (final: prev: {
|
nixpkgs.overlays = [
|
||||||
|
(final: prev: {
|
||||||
dracula-theme = prev.dracula-theme.overrideAttrs (oldAttrs: rec {
|
dracula-theme = prev.dracula-theme.overrideAttrs (oldAttrs: rec {
|
||||||
|
|
||||||
src = prev.fetchFromGitHub {
|
src = prev.fetchFromGitHub {
|
||||||
owner = "dracula";
|
owner = "dracula";
|
||||||
repo = "gtk";
|
repo = "gtk";
|
||||||
|
@ -96,5 +96,6 @@ in {
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
}) ];
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
{ python3Packages }:
|
{python3Packages}:
|
||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
python3Packages.buildPythonPackage rec {
|
||||||
pname = "coloryou";
|
pname = "coloryou";
|
||||||
version = "0.0.1";
|
version = "0.0.1";
|
||||||
|
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [ utils material-color-utilities ];
|
propagatedBuildInputs = with python3Packages; [utils material-color-utilities];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mv -v $out/bin/coloryou.py $out/bin/coloryou
|
mv -v $out/bin/coloryou.py $out/bin/coloryou
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
with import <nixpkgs> {};
|
with import <nixpkgs> {};
|
||||||
with pkgs.python311Packages;
|
with pkgs.python311Packages;
|
||||||
|
buildPythonPackage rec {
|
||||||
buildPythonPackage rec {
|
|
||||||
name = "coloryou";
|
name = "coloryou";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
propagatedBuildInputs = [ material-color-utilities utils ];
|
propagatedBuildInputs = [material-color-utilities utils];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{ stdenv
|
{
|
||||||
, meson
|
stdenv,
|
||||||
, ninja
|
meson,
|
||||||
, pkg-config
|
ninja,
|
||||||
, cmake
|
pkg-config,
|
||||||
, bash-completion
|
cmake,
|
||||||
, fetchFromGitHub
|
bash-completion,
|
||||||
|
fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "input-emulator";
|
pname = "input-emulator";
|
||||||
version = "6c35040e6fc4f65ce0519ee76d00d60490bcb987";
|
version = "6c35040e6fc4f65ce0519ee76d00d60490bcb987";
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
{ stdenv
|
{
|
||||||
, meson
|
stdenv,
|
||||||
, ninja
|
meson,
|
||||||
, pkg-config
|
ninja,
|
||||||
, glib
|
pkg-config,
|
||||||
, libfprint
|
glib,
|
||||||
, polkit
|
libfprint,
|
||||||
, dbus
|
polkit,
|
||||||
, systemd
|
dbus,
|
||||||
, pam
|
systemd,
|
||||||
, libpam-wrapper
|
pam,
|
||||||
, fetchFromGitLab
|
libpam-wrapper,
|
||||||
|
fetchFromGitLab,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "pam-fprint-grosshack";
|
pname = "pam-fprint-grosshack";
|
||||||
version = "v0.3.0";
|
version = "v0.3.0";
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# https://github.com/NixOS/nixpkgs/blob/77b27fdb6a9ba01f60b8f5c48038938cf14b7d2f/pkgs/applications/audio/spotifywm/default.nix
|
# https://github.com/NixOS/nixpkgs/blob/77b27fdb6a9ba01f60b8f5c48038938cf14b7d2f/pkgs/applications/audio/spotifywm/default.nix
|
||||||
|
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
|
@ -8,8 +7,7 @@
|
||||||
makeBinaryWrapper,
|
makeBinaryWrapper,
|
||||||
spotify,
|
spotify,
|
||||||
symlinkJoin,
|
symlinkJoin,
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
spotifywm = stdenv.mkDerivation {
|
spotifywm = stdenv.mkDerivation {
|
||||||
pname = "spotifywm";
|
pname = "spotifywm";
|
||||||
version = "unstable-2022-10-25";
|
version = "unstable-2022-10-25";
|
||||||
|
@ -34,7 +32,7 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
symlinkJoin {
|
symlinkJoin {
|
||||||
inherit (spotifywm) name;
|
inherit (spotifywm) name;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -58,7 +56,7 @@ symlinkJoin {
|
||||||
description = "Wrapper around Spotify that correctly sets class name before opening the window";
|
description = "Wrapper around Spotify that correctly sets class name before opening the window";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
maintainers = with lib.maintainers; [ jqueiroz the-argus ];
|
maintainers = with lib.maintainers; [jqueiroz the-argus];
|
||||||
mainProgram = "spotify";
|
mainProgram = "spotify";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
programs.regreet = {
|
programs.regreet = {
|
||||||
package = pkgs.greetd.regreet.overrideAttrs (self: super: rec {
|
package = pkgs.greetd.regreet.overrideAttrs (self: super: rec {
|
||||||
version = "0.1.1-patched";
|
version = "0.1.1-patched";
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
final: prev: {
|
final: prev: {
|
||||||
squeekboard = prev.squeekboard.overrideAttrs (o: {
|
squeekboard = prev.squeekboard.overrideAttrs (o: {
|
||||||
patches = (o.patches or [ ]) ++ [
|
patches =
|
||||||
|
(o.patches or [])
|
||||||
|
++ [
|
||||||
./patches/remove-panel.patch
|
./patches/remove-panel.patch
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
|
@ -32,7 +32,6 @@
|
||||||
};
|
};
|
||||||
home-manager.users = {
|
home-manager.users = {
|
||||||
matt = {
|
matt = {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../../home/alacritty.nix
|
../../home/alacritty.nix
|
||||||
../../home/dconf.nix
|
../../home/dconf.nix
|
||||||
|
|
|
@ -1,21 +1,27 @@
|
||||||
{ config, lib, modulesPath, pkgs, ... }: {
|
{
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
config,
|
||||||
|
lib,
|
||||||
|
modulesPath,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
||||||
kernelModules = [ "kvm-amd" ];
|
kernelModules = ["kvm-amd"];
|
||||||
extraModulePackages = with config.boot.kernelPackages; [
|
extraModulePackages = with config.boot.kernelPackages; [
|
||||||
v4l2loopback
|
v4l2loopback
|
||||||
];
|
];
|
||||||
|
|
||||||
supportedFilesystems = [ "ntfs" ];
|
supportedFilesystems = ["ntfs"];
|
||||||
|
|
||||||
consoleLogLevel = 0;
|
consoleLogLevel = 0;
|
||||||
|
|
||||||
initrd = {
|
initrd = {
|
||||||
verbose = false;
|
verbose = false;
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod"];
|
||||||
};
|
};
|
||||||
|
|
||||||
loader = {
|
loader = {
|
||||||
|
@ -35,10 +41,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" ={
|
"/" = {
|
||||||
device = "/dev/disk/by-uuid/560976b6-85e0-44ca-bb73-e15a78e9c449";
|
device = "/dev/disk/by-uuid/560976b6-85e0-44ca-bb73-e15a78e9c449";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@" ];
|
options = ["subvol=@"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
# Disable compositor in X11 for best performance
|
# Disable compositor in X11 for best performance
|
||||||
# TODO: add mic sound
|
# TODO: add mic sound
|
||||||
xdg.configFile."gpu-screen-recorder.env".text = ''
|
xdg.configFile."gpu-screen-recorder.env".text = ''
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
icon = "com.github.iwalton3.jellyfin-media-player";
|
icon = "com.github.iwalton3.jellyfin-media-player";
|
||||||
terminal = false;
|
terminal = false;
|
||||||
type = "Application";
|
type = "Application";
|
||||||
categories = [ "AudioVideo" "Video" "Player" "TV" ];
|
categories = ["AudioVideo" "Video" "Player" "TV"];
|
||||||
settings = {
|
settings = {
|
||||||
Version = "1.0";
|
Version = "1.0";
|
||||||
StartupWMClass = "jellyfin-media-player";
|
StartupWMClass = "jellyfin-media-player";
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{ pkgs, lib, ... }: {
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
@ -1,12 +1,18 @@
|
||||||
{ pkgs, lib, ... }: let
|
{
|
||||||
gsr = (pkgs.gpu-screen-recorder.overrideAttrs (o: {
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
gsr = pkgs.gpu-screen-recorder.overrideAttrs (o: {
|
||||||
src = pkgs.fetchgit {
|
src = pkgs.fetchgit {
|
||||||
url = "https://repo.dec05eba.com/gpu-screen-recorder";
|
url = "https://repo.dec05eba.com/gpu-screen-recorder";
|
||||||
rev = "1ac862d155e10f050e6f6cca5381f9f5a3528d98";
|
rev = "1ac862d155e10f050e6f6cca5381f9f5a3528d98";
|
||||||
hash = "sha256-wLiBn4VIi+IWY4qVkdFzkHhECTFH97snogVTEwM5yx8=";
|
hash = "sha256-wLiBn4VIi+IWY4qVkdFzkHhECTFH97snogVTEwM5yx8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = (o.buildInputs or [ ]) ++ (with pkgs; [
|
buildInputs =
|
||||||
|
(o.buildInputs or [])
|
||||||
|
++ (with pkgs; [
|
||||||
wayland
|
wayland
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
libdrm
|
libdrm
|
||||||
|
@ -30,7 +36,7 @@
|
||||||
pkgs.libglvnd
|
pkgs.libglvnd
|
||||||
]}"
|
]}"
|
||||||
'';
|
'';
|
||||||
}));
|
});
|
||||||
in {
|
in {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
pulseaudio # for getting audio sink
|
pulseaudio # for getting audio sink
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{ nix-gaming, pkgs, ... }: {
|
{
|
||||||
|
nix-gaming,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
nix-gaming.nixosModules.steamCompat
|
nix-gaming.nixosModules.steamCompat
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, ... }:
|
{config, ...}: {
|
||||||
{
|
|
||||||
# Enable OpenGL
|
# Enable OpenGL
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -11,7 +10,6 @@
|
||||||
services.xserver.videoDrivers = ["nvidia"];
|
services.xserver.videoDrivers = ["nvidia"];
|
||||||
|
|
||||||
hardware.nvidia = {
|
hardware.nvidia = {
|
||||||
|
|
||||||
# Modesetting is required.
|
# Modesetting is required.
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
{ config, modulesPath, pkgs, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
modulesPath,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
nixpkgs.hostPlatform = "x86_64-linux";
|
nixpkgs.hostPlatform = "x86_64-linux";
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_latest;
|
kernelPackages = pkgs.linuxPackages_latest;
|
||||||
kernelModules = [ "kvm-amd" ];
|
kernelModules = ["kvm-amd"];
|
||||||
extraModulePackages = with config.boot.kernelPackages; [
|
extraModulePackages = with config.boot.kernelPackages; [
|
||||||
v4l2loopback
|
v4l2loopback
|
||||||
];
|
];
|
||||||
|
@ -19,7 +24,7 @@
|
||||||
initrd = {
|
initrd = {
|
||||||
verbose = false;
|
verbose = false;
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ];
|
availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "sd_mod"];
|
||||||
|
|
||||||
luks.devices."root" = {
|
luks.devices."root" = {
|
||||||
device = "/dev/disk/by-uuid/ab82b477-2477-453f-b95f-28e5553ad10d";
|
device = "/dev/disk/by-uuid/ab82b477-2477-453f-b95f-28e5553ad10d";
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
{ config, pkgs, ... }: let
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
configDir = config.services.device-vars.configDir;
|
configDir = config.services.device-vars.configDir;
|
||||||
symlink = config.lib.file.mkOutOfStoreSymlink;
|
symlink = config.lib.file.mkOutOfStoreSymlink;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"gtklock/config.ini".source = pkgs.writeText "config.ini" ''
|
"gtklock/config.ini".source = pkgs.writeText "config.ini" ''
|
||||||
[main]
|
[main]
|
||||||
|
|
|
@ -1,4 +1,12 @@
|
||||||
{ pkgs, config, hyprland, hyprgrass, ags, osConfig, ... }: let
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
hyprland,
|
||||||
|
hyprgrass,
|
||||||
|
ags,
|
||||||
|
osConfig,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
configDir = config.services.device-vars.configDir;
|
configDir = config.services.device-vars.configDir;
|
||||||
symlink = config.lib.file.mkOutOfStoreSymlink;
|
symlink = config.lib.file.mkOutOfStoreSymlink;
|
||||||
|
|
||||||
|
@ -13,7 +21,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
configDir = symlink "${configDir}/ags";
|
configDir = symlink "${configDir}/ags";
|
||||||
package = ags.packages.x86_64-linux.default;
|
package = ags.packages.x86_64-linux.default;
|
||||||
extraPackages = [ pkgs.libgudev ];
|
extraPackages = [pkgs.libgudev];
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
|
@ -43,7 +51,7 @@ in {
|
||||||
"swww init --no-cache && swww img -t none ${pkgs.dracula-theme}/wallpapers/waves.png"
|
"swww init --no-cache && swww img -t none ${pkgs.dracula-theme}/wallpapers/waves.png"
|
||||||
];
|
];
|
||||||
|
|
||||||
source = [ "~/.config/hypr/main.conf" ];
|
source = ["~/.config/hypr/main.conf"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -68,7 +76,6 @@ in {
|
||||||
networkmanagerapplet # TODO: replace with ags widget
|
networkmanagerapplet # TODO: replace with ags widget
|
||||||
blueberry # TODO: replace with ags widget
|
blueberry # TODO: replace with ags widget
|
||||||
|
|
||||||
|
|
||||||
# Hyprland
|
# Hyprland
|
||||||
swww
|
swww
|
||||||
swayidle
|
swayidle
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
{ pkgs, nixpkgs-wayland, ... }: let
|
{
|
||||||
|
pkgs,
|
||||||
|
nixpkgs-wayland,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
waypkgs = nixpkgs-wayland.packages.x86_64-linux;
|
waypkgs = nixpkgs-wayland.packages.x86_64-linux;
|
||||||
in {
|
in {
|
||||||
programs = {
|
programs = {
|
||||||
|
|
||||||
obs-studio = {
|
obs-studio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = with waypkgs; [
|
plugins = with waypkgs; [
|
||||||
|
@ -13,12 +16,12 @@ in {
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = (with pkgs.python311Packages; [
|
home.packages =
|
||||||
|
(with pkgs.python311Packages; [
|
||||||
python
|
python
|
||||||
pyclip
|
pyclip
|
||||||
]) ++
|
])
|
||||||
|
++ (with pkgs.plasma5Packages; [
|
||||||
(with pkgs.plasma5Packages; [
|
|
||||||
polkit-kde-agent
|
polkit-kde-agent
|
||||||
ark
|
ark
|
||||||
kcharselect
|
kcharselect
|
||||||
|
@ -34,14 +37,12 @@ in {
|
||||||
kio-admin # needs to be both here and in system pkgs
|
kio-admin # needs to be both here and in system pkgs
|
||||||
kio-extras
|
kio-extras
|
||||||
kmime
|
kmime
|
||||||
]) ++
|
])
|
||||||
|
++ (with pkgs.gnome; [
|
||||||
(with pkgs.gnome; [
|
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
seahorse
|
seahorse
|
||||||
]) ++
|
])
|
||||||
|
++ (with pkgs; [
|
||||||
(with pkgs; [
|
|
||||||
# School
|
# School
|
||||||
virt-manager
|
virt-manager
|
||||||
bluej
|
bluej
|
||||||
|
@ -92,7 +93,7 @@ in {
|
||||||
icon = "gparted";
|
icon = "gparted";
|
||||||
terminal = false;
|
terminal = false;
|
||||||
type = "Application";
|
type = "Application";
|
||||||
categories = [ "GNOME" "System" "Filesystem" ];
|
categories = ["GNOME" "System" "Filesystem"];
|
||||||
startupNotify = true;
|
startupNotify = true;
|
||||||
settings = {
|
settings = {
|
||||||
Keywords = "Partition";
|
Keywords = "Partition";
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{ hyprland, pkgs, ... }: {
|
{
|
||||||
|
hyprland,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
{ pkgs, lib, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
services.fprintd.enable = true;
|
services.fprintd.enable = true;
|
||||||
|
|
||||||
# https://www.reddit.com/r/NixOS/comments/z7i83r/fingertip_tip_start_fprintd_at_boot_for_a_quick/
|
# https://www.reddit.com/r/NixOS/comments/z7i83r/fingertip_tip_start_fprintd_at_boot_for_a_quick/
|
||||||
systemd.services.fprintd = {
|
systemd.services.fprintd = {
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = ["multi-user.target"];
|
||||||
serviceConfig.Type = "simple";
|
serviceConfig.Type = "simple";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -16,7 +18,6 @@
|
||||||
'';
|
'';
|
||||||
|
|
||||||
security.pam.services = {
|
security.pam.services = {
|
||||||
|
|
||||||
gtklock = {};
|
gtklock = {};
|
||||||
|
|
||||||
# all the changes in /etc/pam.d/*
|
# all the changes in /etc/pam.d/*
|
||||||
|
|
BIN
flake.nix
BIN
flake.nix
Binary file not shown.
|
@ -1,4 +1,4 @@
|
||||||
{ config, ... }: {
|
{config, ...}: {
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
"org/virt-manager/virt-manager/connections" = {
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
autoconnect = ["qemu:///system"];
|
autoconnect = ["qemu:///system"];
|
||||||
|
@ -6,7 +6,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
"apps/seahorse/listing" = {
|
"apps/seahorse/listing" = {
|
||||||
keyrings-selected = [ "gnupg://" ];
|
keyrings-selected = ["gnupg://"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gtk/settings/file-chooser" = {
|
"org/gtk/settings/file-chooser" = {
|
||||||
|
|
|
@ -1,16 +1,25 @@
|
||||||
{ fetchurl, lib, stdenv }@args:
|
{
|
||||||
|
fetchurl,
|
||||||
let
|
lib,
|
||||||
|
stdenv,
|
||||||
buildFirefoxXpiAddon = lib.makeOverridable ({ stdenv ? args.stdenv
|
} @ args: let
|
||||||
, fetchurl ? args.fetchurl, pname, version, addonId, url, sha256, meta, ...
|
buildFirefoxXpiAddon = lib.makeOverridable ({
|
||||||
|
stdenv ? args.stdenv,
|
||||||
|
fetchurl ? args.fetchurl,
|
||||||
|
pname,
|
||||||
|
version,
|
||||||
|
addonId,
|
||||||
|
url,
|
||||||
|
sha256,
|
||||||
|
meta,
|
||||||
|
...
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
inherit meta;
|
inherit meta;
|
||||||
|
|
||||||
src = fetchurl { inherit url sha256; };
|
src = fetchurl {inherit url sha256;};
|
||||||
|
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
allowSubstitutes = true;
|
allowSubstitutes = true;
|
||||||
|
@ -25,13 +34,15 @@ let
|
||||||
packages = import ./generated-firefox-addons.nix {
|
packages = import ./generated-firefox-addons.nix {
|
||||||
inherit buildFirefoxXpiAddon fetchurl lib stdenv;
|
inherit buildFirefoxXpiAddon fetchurl lib stdenv;
|
||||||
};
|
};
|
||||||
|
in
|
||||||
in packages // {
|
packages
|
||||||
|
// {
|
||||||
inherit buildFirefoxXpiAddon;
|
inherit buildFirefoxXpiAddon;
|
||||||
|
|
||||||
seventv = let
|
seventv = let
|
||||||
version = "v3.0.10.1000";
|
version = "v3.0.10.1000";
|
||||||
in buildFirefoxXpiAddon {
|
in
|
||||||
|
buildFirefoxXpiAddon {
|
||||||
pname = "seventv";
|
pname = "seventv";
|
||||||
inherit version;
|
inherit version;
|
||||||
addonId = "moz-addon@7tv.app";
|
addonId = "moz-addon@7tv.app";
|
||||||
|
@ -44,4 +55,4 @@ in packages // {
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,20 @@
|
||||||
{ buildFirefoxXpiAddon, fetchurl, lib, stdenv }:
|
{
|
||||||
{
|
buildFirefoxXpiAddon,
|
||||||
|
fetchurl,
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
}: {
|
||||||
"600-sound-volume" = buildFirefoxXpiAddon {
|
"600-sound-volume" = buildFirefoxXpiAddon {
|
||||||
pname = "600-sound-volume";
|
pname = "600-sound-volume";
|
||||||
version = "1.5.3";
|
version = "1.5.3";
|
||||||
addonId = "{c4b582ec-4343-438c-bda2-2f691c16c262}";
|
addonId = "{c4b582ec-4343-438c-bda2-2f691c16c262}";
|
||||||
url = "https://addons.mozilla.org/firefox/downloads/file/4133303/600_sound_volume-1.5.3.xpi";
|
url = "https://addons.mozilla.org/firefox/downloads/file/4133303/600_sound_volume-1.5.3.xpi";
|
||||||
sha256 = "7045a812608338f95181459ae3e518bb51c8dc9a724a4083afb687d14075c304";
|
sha256 = "7045a812608338f95181459ae3e518bb51c8dc9a724a4083afb687d14075c304";
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
{
|
|
||||||
homepage = "http://resourcefulman.net/";
|
homepage = "http://resourcefulman.net/";
|
||||||
description = "Up to 600% volume boost";
|
description = "Up to 600% volume boost";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
mozPermissions = [ "<all_urls>" "tabs" "activeTab" "storage" ];
|
mozPermissions = ["<all_urls>" "tabs" "activeTab" "storage"];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -21,8 +24,7 @@
|
||||||
addonId = "{bd97f89b-17ba-4539-9fec-06852d07f917}";
|
addonId = "{bd97f89b-17ba-4539-9fec-06852d07f917}";
|
||||||
url = "https://addons.mozilla.org/firefox/downloads/file/3594420/checkmarks_web_ext-1.6.1.xpi";
|
url = "https://addons.mozilla.org/firefox/downloads/file/3594420/checkmarks_web_ext-1.6.1.xpi";
|
||||||
sha256 = "c3ccf4b302ee96c9b883c4a1f7d26395ab4e276b976cab2d65c9cd898964e4f0";
|
sha256 = "c3ccf4b302ee96c9b883c4a1f7d26395ab4e276b976cab2d65c9cd898964e4f0";
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
{
|
|
||||||
homepage = "https://github.com/tanwald/checkmarks";
|
homepage = "https://github.com/tanwald/checkmarks";
|
||||||
description = "Checks, sorts, formats bookmarks and loads favicons.";
|
description = "Checks, sorts, formats bookmarks and loads favicons.";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -45,8 +47,7 @@
|
||||||
addonId = "@contain-google";
|
addonId = "@contain-google";
|
||||||
url = "https://addons.mozilla.org/firefox/downloads/file/3736912/google_container-1.5.4.xpi";
|
url = "https://addons.mozilla.org/firefox/downloads/file/3736912/google_container-1.5.4.xpi";
|
||||||
sha256 = "47a7c0e85468332a0d949928d8b74376192cde4abaa14280002b3aca4ec814d0";
|
sha256 = "47a7c0e85468332a0d949928d8b74376192cde4abaa14280002b3aca4ec814d0";
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
{
|
|
||||||
homepage = "https://github.com/containers-everywhere/contain-google";
|
homepage = "https://github.com/containers-everywhere/contain-google";
|
||||||
description = "THIS IS NOT AN OFFICIAL ADDON FROM MOZILLA!\nIt is a fork of the Facebook Container addon.\n\nPrevent Google from tracking you around the web. The Google Container extension helps you take control and isolate your web activity from Google.";
|
description = "THIS IS NOT AN OFFICIAL ADDON FROM MOZILLA!\nIt is a fork of the Facebook Container addon.\n\nPrevent Google from tracking you around the web. The Google Container extension helps you take control and isolate your web activity from Google.";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
|
@ -69,8 +70,7 @@
|
||||||
addonId = "{bf197856-a3c2-4280-84c5-9b556379b706}";
|
addonId = "{bf197856-a3c2-4280-84c5-9b556379b706}";
|
||||||
url = "https://addons.mozilla.org/firefox/downloads/file/3522842/opera_gx_witchcraft_purple-2.0.xpi";
|
url = "https://addons.mozilla.org/firefox/downloads/file/3522842/opera_gx_witchcraft_purple-2.0.xpi";
|
||||||
sha256 = "aa3c6377b8571c42a3988de042694be70ec6a250a9aea7ae1cc262acdc9374eb";
|
sha256 = "aa3c6377b8571c42a3988de042694be70ec6a250a9aea7ae1cc262acdc9374eb";
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
{
|
|
||||||
description = "inspired by Opera GX";
|
description = "inspired by Opera GX";
|
||||||
license = licenses.cc-by-sa-30;
|
license = licenses.cc-by-sa-30;
|
||||||
mozPermissions = [];
|
mozPermissions = [];
|
||||||
|
@ -83,8 +83,7 @@
|
||||||
addonId = "{76ef94a4-e3d0-4c6f-961a-d38a429a332b}";
|
addonId = "{76ef94a4-e3d0-4c6f-961a-d38a429a332b}";
|
||||||
url = "https://addons.mozilla.org/firefox/downloads/file/4179399/ttv_lol_pro-2.2.1.xpi";
|
url = "https://addons.mozilla.org/firefox/downloads/file/4179399/ttv_lol_pro-2.2.1.xpi";
|
||||||
sha256 = "83d012878021fb5fe25bee1101a7a760974ae9e2949b80fd99b73d3da48b1f99";
|
sha256 = "83d012878021fb5fe25bee1101a7a760974ae9e2949b80fd99b73d3da48b1f99";
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
{
|
|
||||||
homepage = "https://github.com/younesaassila/ttv-lol-pro";
|
homepage = "https://github.com/younesaassila/ttv-lol-pro";
|
||||||
description = "TTV LOL PRO removes most livestream ads from Twitch.";
|
description = "TTV LOL PRO removes most livestream ads from Twitch.";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -102,4 +101,4 @@
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
{ config, pkgs, ... }: let
|
{
|
||||||
firefox-addons = pkgs.recurseIntoAttrs (pkgs.callPackage ./addons { });
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
firefox-addons = pkgs.recurseIntoAttrs (pkgs.callPackage ./addons {});
|
||||||
sound-volume = firefox-addons."600-sound-volume";
|
sound-volume = firefox-addons."600-sound-volume";
|
||||||
|
|
||||||
firefox-gx = pkgs.callPackage ./firefox-gx { };
|
firefox-gx = pkgs.callPackage ./firefox-gx {};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".mozilla/firefox/matt/chrome/components".source = "${firefox-gx}/chrome/components";
|
".mozilla/firefox/matt/chrome/components".source = "${firefox-gx}/chrome/components";
|
||||||
".mozilla/firefox/matt/chrome/icons".source = "${firefox-gx}/chrome/icons";
|
".mozilla/firefox/matt/chrome/icons".source = "${firefox-gx}/chrome/icons";
|
||||||
|
@ -76,69 +79,89 @@ in
|
||||||
force = true;
|
force = true;
|
||||||
engines = {
|
engines = {
|
||||||
"Nix Packages" = {
|
"Nix Packages" = {
|
||||||
urls = [{
|
urls = [
|
||||||
|
{
|
||||||
template = "https://search.nixos.org/packages";
|
template = "https://search.nixos.org/packages";
|
||||||
params = [
|
params = [
|
||||||
{ name = "type"; value = "packages"; }
|
{
|
||||||
{ name = "query"; value = "{searchTerms}"; }
|
name = "type";
|
||||||
|
value = "packages";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "query";
|
||||||
|
value = "{searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}];
|
|
||||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake-white.svg";
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake-white.svg";
|
||||||
definedAliases = [ "@np" ];
|
definedAliases = ["@np"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"NixOS Wiki" = {
|
"NixOS Wiki" = {
|
||||||
urls = [{ template =
|
urls = [
|
||||||
"https://nixos.wiki/index.php?search={searchTerms}";
|
{
|
||||||
}];
|
template = "https://nixos.wiki/index.php?search={searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
iconUpdateURL = "https://nixos.wiki/favicon.png";
|
iconUpdateURL = "https://nixos.wiki/favicon.png";
|
||||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||||
definedAliases = [ "@nw" ];
|
definedAliases = ["@nw"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"MyNixos" = {
|
"MyNixos" = {
|
||||||
urls = [{ template =
|
urls = [
|
||||||
"https://mynixos.com/search?q={searchTerms}";
|
{
|
||||||
}];
|
template = "https://mynixos.com/search?q={searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
iconUpdateURL = "https://mynixos.com/favicon.ico";
|
iconUpdateURL = "https://mynixos.com/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||||
definedAliases = [ "@mn" ];
|
definedAliases = ["@mn"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"Noogle" = {
|
"Noogle" = {
|
||||||
urls = [{ template =
|
urls = [
|
||||||
"https://noogle.dev/?term={searchTerms}";
|
{
|
||||||
}];
|
template = "https://noogle.dev/?term={searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
iconUpdateURL = "https://noogle.dev/favicon.ico";
|
iconUpdateURL = "https://noogle.dev/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||||
definedAliases = [ "@ng" ];
|
definedAliases = ["@ng"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"Firefox Add-ons" = {
|
"Firefox Add-ons" = {
|
||||||
urls = [{ template =
|
urls = [
|
||||||
"https://addons.mozilla.org/en-US/firefox/search/?q={searchTerms}";
|
{
|
||||||
}];
|
template = "https://addons.mozilla.org/en-US/firefox/search/?q={searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
iconUpdateURL = "https://addons.mozilla.org/favicon.ico";
|
iconUpdateURL = "https://addons.mozilla.org/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||||
definedAliases = [ "@fa" ];
|
definedAliases = ["@fa"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"ProtonDB" = {
|
"ProtonDB" = {
|
||||||
urls = [{ template =
|
urls = [
|
||||||
"https://www.protondb.com/search?q={searchTerms}";
|
{
|
||||||
}];
|
template = "https://www.protondb.com/search?q={searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
iconUpdateURL = "https://www.protondb.com/favicon.ico";
|
iconUpdateURL = "https://www.protondb.com/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||||
definedAliases = [ "@pdb" ];
|
definedAliases = ["@pdb"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"YouTube" = {
|
"YouTube" = {
|
||||||
urls = [{ template =
|
urls = [
|
||||||
"https://www.youtube.com/results?search_query={searchTerms}";
|
{
|
||||||
}];
|
template = "https://www.youtube.com/results?search_query={searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
iconUpdateURL = "https://www.youtube.com/favicon.ico";
|
iconUpdateURL = "https://www.youtube.com/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||||
definedAliases = [ "@yt" "@youtube" ];
|
definedAliases = ["@yt" "@youtube"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"Bing".metaData.hidden = true;
|
"Bing".metaData.hidden = true;
|
||||||
|
@ -165,9 +188,8 @@ in
|
||||||
stylus
|
stylus
|
||||||
#tridactyl
|
#tridactyl
|
||||||
ublock-origin
|
ublock-origin
|
||||||
]) ++
|
])
|
||||||
|
++ (with rycee.firefox-addons; [
|
||||||
(with rycee.firefox-addons; [
|
|
||||||
bitwarden
|
bitwarden
|
||||||
darkreader
|
darkreader
|
||||||
floccus
|
floccus
|
||||||
|
@ -175,9 +197,8 @@ in
|
||||||
image-search-options
|
image-search-options
|
||||||
return-youtube-dislikes
|
return-youtube-dislikes
|
||||||
undoclosetabbutton
|
undoclosetabbutton
|
||||||
]) ++
|
])
|
||||||
|
++ (with firefox-addons; [
|
||||||
(with firefox-addons; [
|
|
||||||
sound-volume
|
sound-volume
|
||||||
google-container
|
google-container
|
||||||
checkmarks-web-ext
|
checkmarks-web-ext
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
{ lib, stdenvNoCC, fetchFromGitHub, writeText }:
|
{
|
||||||
let
|
lib,
|
||||||
|
stdenvNoCC,
|
||||||
|
fetchFromGitHub,
|
||||||
|
writeText,
|
||||||
|
}: let
|
||||||
pname = "firefox-gx";
|
pname = "firefox-gx";
|
||||||
version = "8.5";
|
version = "8.5";
|
||||||
|
|
||||||
custom-menu = writeText "menu" "${builtins.readFile ./ogx_menu.css}";
|
custom-menu = writeText "menu" "${builtins.readFile ./ogx_menu.css}";
|
||||||
custom-sidebar = writeText "sidebar" "${builtins.readFile ./ogx_left-sidebar.css}";
|
custom-sidebar = writeText "sidebar" "${builtins.readFile ./ogx_left-sidebar.css}";
|
||||||
in
|
in
|
||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
@ -37,4 +41,4 @@ stdenvNoCC.mkDerivation {
|
||||||
homepage = "https://github.com/Godiesc/firefox-gx";
|
homepage = "https://github.com/Godiesc/firefox-gx";
|
||||||
license = licenses.mspl;
|
license = licenses.mspl;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, config, ... }: let
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
fontSize = config.services.device-vars.fontSize;
|
fontSize = config.services.device-vars.fontSize;
|
||||||
dracula-xresources = pkgs.fetchFromGitHub {
|
dracula-xresources = pkgs.fetchFromGitHub {
|
||||||
owner = "dracula";
|
owner = "dracula";
|
||||||
|
@ -6,8 +11,7 @@
|
||||||
rev = "539ef24e9b0c5498a82d59bfa2bad9b618d832a3";
|
rev = "539ef24e9b0c5498a82d59bfa2bad9b618d832a3";
|
||||||
sha256 = "sha256-6fltsAluqOqYIh2NX0I/LC3WCWkb9Fn8PH6LNLBQbrY=";
|
sha256 = "sha256-6fltsAluqOqYIh2NX0I/LC3WCWkb9Fn8PH6LNLBQbrY=";
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
name = "Dracula-cursors";
|
name = "Dracula-cursors";
|
||||||
package = pkgs.dracula-theme;
|
package = pkgs.dracula-theme;
|
||||||
|
@ -48,7 +52,7 @@ in
|
||||||
platformTheme = "qtct";
|
platformTheme = "qtct";
|
||||||
};
|
};
|
||||||
|
|
||||||
xresources.extraConfig = builtins.readFile("${dracula-xresources}/Xresources");
|
xresources.extraConfig = builtins.readFile "${dracula-xresources}/Xresources";
|
||||||
|
|
||||||
xdg.configFile = let
|
xdg.configFile = let
|
||||||
qtconf = ''
|
qtconf = ''
|
||||||
|
@ -58,10 +62,8 @@ in
|
||||||
|
|
||||||
[Appearance]
|
[Appearance]
|
||||||
icon_theme=Flat-Remix-Violet-Dark
|
icon_theme=Flat-Remix-Violet-Dark
|
||||||
style=''
|
style='';
|
||||||
;
|
in {
|
||||||
in
|
|
||||||
{
|
|
||||||
"Kvantum/Dracula/Dracula.kvconfig".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula-purple-solid/Dracula-purple-solid.kvconfig";
|
"Kvantum/Dracula/Dracula.kvconfig".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula-purple-solid/Dracula-purple-solid.kvconfig";
|
||||||
"Kvantum/Dracula/Dracula.svg".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula-purple-solid/Dracula-purple-solid.svg";
|
"Kvantum/Dracula/Dracula.svg".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula-purple-solid/Dracula-purple-solid.svg";
|
||||||
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=Dracula";
|
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=Dracula";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
programs = {
|
programs = {
|
||||||
wofi = {
|
wofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ nix-gaming, ... }: {
|
{nix-gaming, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
nix-gaming.nixosModules.pipewireLowLatency
|
nix-gaming.nixosModules.pipewireLowLatency
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
{ lib
|
{
|
||||||
, pkgs
|
lib,
|
||||||
, config
|
pkgs,
|
||||||
, hyprland
|
config,
|
||||||
, ...
|
hyprland,
|
||||||
|
...
|
||||||
}: let
|
}: let
|
||||||
regreetBin = "${lib.getExe config.programs.regreet.package}";
|
regreetBin = "${lib.getExe config.programs.regreet.package}";
|
||||||
hyprBin = "${hyprland.packages.x86_64-linux.default}/bin";
|
hyprBin = "${hyprland.packages.x86_64-linux.default}/bin";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
services.kmscon = {
|
services.kmscon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
hwRender = false;
|
hwRender = false;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
boot = {
|
boot = {
|
||||||
initrd = {
|
initrd = {
|
||||||
verbose = false;
|
verbose = false;
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
plymouth = {
|
plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
themePackages = [ pkgs.dracula-theme ];
|
themePackages = [pkgs.dracula-theme];
|
||||||
theme = "dracula";
|
theme = "dracula";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
printing = {
|
printing = {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
systemd.user.services.protonmail-bridge = {
|
systemd.user.services.protonmail-bridge = {
|
||||||
description = "Protonmail Bridge";
|
description = "Protonmail Bridge";
|
||||||
enable = true;
|
enable = true;
|
||||||
script = "${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive --log-level info";
|
script = "${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive --log-level info";
|
||||||
path = [ pkgs.gnome.gnome-keyring ]; # HACK: https://github.com/ProtonMail/proton-bridge/issues/176
|
path = [pkgs.gnome.gnome-keyring]; # HACK: https://github.com/ProtonMail/proton-bridge/issues/176
|
||||||
wantedBy = [ "graphical-session.target" ];
|
wantedBy = ["graphical-session.target"];
|
||||||
partOf = [ "graphical-session.target" ];
|
partOf = ["graphical-session.target"];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
dracula-theme
|
dracula-theme
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
services = {
|
services = {
|
||||||
tailscale = {
|
tailscale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue