[fix] *.nix: reformat with alejandra
This commit is contained in:
parent
876dc45719
commit
39c2fb096c
26 changed files with 565 additions and 562 deletions
|
@ -1,12 +1,13 @@
|
||||||
{ pkgs, lib }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
lib,
|
||||||
|
}: let
|
||||||
# can be removed once https://github.com/rust-lang/mdBook/pull/2262 lands
|
# can be removed once https://github.com/rust-lang/mdBook/pull/2262 lands
|
||||||
highlight = pkgs.fetchurl {
|
highlight = pkgs.fetchurl {
|
||||||
url = "https://raw.githubusercontent.com/rust-lang/mdBook/7b9bd5049ce15ae5f301d5a40c50ce8359d9e9a8/src/theme/highlight.js";
|
url = "https://raw.githubusercontent.com/rust-lang/mdBook/7b9bd5049ce15ae5f301d5a40c50ce8359d9e9a8/src/theme/highlight.js";
|
||||||
hash = "sha256-pLP73zlmGkbC/zV6bwnB6ijRf9gVkj5/VYMGLhiQ1/Q=";
|
hash = "sha256-pLP73zlmGkbC/zV6bwnB6ijRf9gVkj5/VYMGLhiQ1/Q=";
|
||||||
};
|
};
|
||||||
filterVisible =
|
filterVisible = toplevelOption: option:
|
||||||
toplevelOption: option:
|
|
||||||
option // {visible = option.visible && builtins.elemAt option.loc 0 == toplevelOption;};
|
option // {visible = option.visible && builtins.elemAt option.loc 0 == toplevelOption;};
|
||||||
home-eval = lib.evalModules {
|
home-eval = lib.evalModules {
|
||||||
modules = [../home/options.nix];
|
modules = [../home/options.nix];
|
||||||
|
@ -20,19 +21,21 @@ let
|
||||||
(pkgs.nixosOptionsDoc {
|
(pkgs.nixosOptionsDoc {
|
||||||
inherit (home-eval) options;
|
inherit (home-eval) options;
|
||||||
transformOptions = filterVisible "jhome";
|
transformOptions = filterVisible "jhome";
|
||||||
}).optionsCommonMark;
|
})
|
||||||
|
.optionsCommonMark;
|
||||||
nvim-markdown =
|
nvim-markdown =
|
||||||
(pkgs.nixosOptionsDoc {
|
(pkgs.nixosOptionsDoc {
|
||||||
inherit (nvim-eval) options;
|
inherit (nvim-eval) options;
|
||||||
transformOptions = filterVisible "jhome";
|
transformOptions = filterVisible "jhome";
|
||||||
}).optionsCommonMark;
|
})
|
||||||
|
.optionsCommonMark;
|
||||||
nixos-markdown =
|
nixos-markdown =
|
||||||
(pkgs.nixosOptionsDoc {
|
(pkgs.nixosOptionsDoc {
|
||||||
inherit (nixos-eval) options;
|
inherit (nixos-eval) options;
|
||||||
transformOptions = filterVisible "jconfig";
|
transformOptions = filterVisible "jconfig";
|
||||||
}).optionsCommonMark;
|
})
|
||||||
in
|
.optionsCommonMark;
|
||||||
{
|
in {
|
||||||
inherit nixos-markdown nvim-markdown home-markdown;
|
inherit nixos-markdown nvim-markdown home-markdown;
|
||||||
docs = pkgs.stdenvNoCC.mkDerivation {
|
docs = pkgs.stdenvNoCC.mkDerivation {
|
||||||
name = "nixos-configuration-book";
|
name = "nixos-configuration-book";
|
||||||
|
|
35
flake.nix
35
flake.nix
|
@ -33,8 +33,7 @@
|
||||||
inputs.neovim-flake.inputs.nixpkgs.follows = "nixpkgs";
|
inputs.neovim-flake.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
# Flake outputs that other flakes can use
|
# Flake outputs that other flakes can use
|
||||||
outputs =
|
outputs = {
|
||||||
{
|
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
stylix,
|
stylix,
|
||||||
|
@ -44,16 +43,14 @@
|
||||||
audiomenu,
|
audiomenu,
|
||||||
nixvim,
|
nixvim,
|
||||||
neovim-flake,
|
neovim-flake,
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
inherit (nixpkgs) lib;
|
inherit (nixpkgs) lib;
|
||||||
# Helpers for producing system-specific outputs
|
# Helpers for producing system-specific outputs
|
||||||
supportedSystems = [
|
supportedSystems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
];
|
];
|
||||||
forEachSupportedSystem =
|
forEachSupportedSystem = f:
|
||||||
f:
|
|
||||||
nixpkgs.lib.genAttrs supportedSystems (
|
nixpkgs.lib.genAttrs supportedSystems (
|
||||||
system:
|
system:
|
||||||
f {
|
f {
|
||||||
|
@ -62,11 +59,12 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
overlays = builtins.attrValues self.overlays;
|
overlays = builtins.attrValues self.overlays;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
checks = forEachSupportedSystem (
|
checks = forEachSupportedSystem (
|
||||||
{ pkgs, system }:
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
system,
|
||||||
|
}: {
|
||||||
nvim = nixvim.lib.${system}.check.mkTestDerivationFromNixvimModule {
|
nvim = nixvim.lib.${system}.check.mkTestDerivationFromNixvimModule {
|
||||||
pkgs = import nixpkgs {inherit system overlays;};
|
pkgs = import nixpkgs {inherit system overlays;};
|
||||||
module = ./nvim/nixvim.nix;
|
module = ./nvim/nixvim.nix;
|
||||||
|
@ -77,9 +75,12 @@
|
||||||
);
|
);
|
||||||
|
|
||||||
packages = forEachSupportedSystem (
|
packages = forEachSupportedSystem (
|
||||||
{ pkgs, system }:
|
|
||||||
{
|
{
|
||||||
inherit (import ./docs { inherit pkgs lib; })
|
pkgs,
|
||||||
|
system,
|
||||||
|
}: {
|
||||||
|
inherit
|
||||||
|
(import ./docs {inherit pkgs lib;})
|
||||||
docs
|
docs
|
||||||
nixos-markdown
|
nixos-markdown
|
||||||
nvim-markdown
|
nvim-markdown
|
||||||
|
@ -102,11 +103,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Nix files formatter (run `nix fmt`)
|
# Nix files formatter (run `nix fmt`)
|
||||||
formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixfmt-rfc-style);
|
formatter = forEachSupportedSystem ({pkgs, ...}: pkgs.alejandra);
|
||||||
|
|
||||||
# Example vm configuration
|
# Example vm configuration
|
||||||
nixosConfigurations.vm =
|
nixosConfigurations.vm = let
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["steam-original"];
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["steam-original"];
|
||||||
pkgs = import nixpkgs {inherit system overlays config;};
|
pkgs = import nixpkgs {inherit system overlays config;};
|
||||||
|
@ -144,8 +144,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosModules =
|
nixosModules = let
|
||||||
let
|
|
||||||
nvim-config.imports = [
|
nvim-config.imports = [
|
||||||
nixvim.homeManagerModules.nixvim
|
nixvim.homeManagerModules.nixvim
|
||||||
./nvim
|
./nvim
|
||||||
|
@ -189,8 +188,10 @@
|
||||||
// machineModules;
|
// machineModules;
|
||||||
|
|
||||||
devShells = forEachSupportedSystem (
|
devShells = forEachSupportedSystem (
|
||||||
{ pkgs, system }:
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
system,
|
||||||
|
}: {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
just
|
just
|
||||||
|
|
|
@ -2,18 +2,15 @@
|
||||||
overlays,
|
overlays,
|
||||||
nvim-config,
|
nvim-config,
|
||||||
stylix ? null,
|
stylix ? null,
|
||||||
}:
|
}: {
|
||||||
{
|
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
cfg = config.jhome;
|
cfg = config.jhome;
|
||||||
devcfg = cfg.dev;
|
devcfg = cfg.dev;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
# Apply overlays
|
# Apply overlays
|
||||||
|
@ -82,7 +79,9 @@ in
|
||||||
services.gpg-agent.enable = true;
|
services.gpg-agent.enable = true;
|
||||||
services.gpg-agent.maxCacheTtl = 86400;
|
services.gpg-agent.maxCacheTtl = 86400;
|
||||||
services.gpg-agent.pinentryPackage =
|
services.gpg-agent.pinentryPackage =
|
||||||
if config.jhome.gui.enable then pkgs.pinentry-qt else pkgs.pinentry-curses;
|
if config.jhome.gui.enable
|
||||||
|
then pkgs.pinentry-qt
|
||||||
|
else pkgs.pinentry-curses;
|
||||||
services.gpg-agent.extraConfig = "allow-preset-passphrase";
|
services.gpg-agent.extraConfig = "allow-preset-passphrase";
|
||||||
# Spotifyd
|
# Spotifyd
|
||||||
services.spotifyd.enable = true;
|
services.spotifyd.enable = true;
|
||||||
|
|
|
@ -4,22 +4,25 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
osConfig ? null,
|
osConfig ? null,
|
||||||
...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
inherit (config) jhome;
|
inherit (config) jhome;
|
||||||
flatpakEnabled = if osConfig != null then osConfig.services.flatpak.enable else false;
|
flatpakEnabled =
|
||||||
|
if osConfig != null
|
||||||
|
then osConfig.services.flatpak.enable
|
||||||
|
else false;
|
||||||
osSway = osConfig == null && !osConfig.programs.sway.enable;
|
osSway = osConfig == null && !osConfig.programs.sway.enable;
|
||||||
swayPkg = if osSway then pkgs.sway else null;
|
swayPkg =
|
||||||
|
if osSway
|
||||||
|
then pkgs.sway
|
||||||
|
else null;
|
||||||
cfg = jhome.gui;
|
cfg = jhome.gui;
|
||||||
cursor.package = pkgs.nordzy-cursor-theme;
|
cursor.package = pkgs.nordzy-cursor-theme;
|
||||||
cursor.name = "Nordzy-cursors";
|
cursor.name = "Nordzy-cursors";
|
||||||
iconTheme.name = "Papirus-Dark";
|
iconTheme.name = "Papirus-Dark";
|
||||||
iconTheme.package = pkgs.papirus-icon-theme;
|
iconTheme.package = pkgs.papirus-icon-theme;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
config = lib.mkIf (jhome.enable && cfg.enable) {
|
config = lib.mkIf (jhome.enable && cfg.enable) {
|
||||||
home.packages =
|
home.packages = with pkgs;
|
||||||
with pkgs;
|
|
||||||
[
|
[
|
||||||
webcord
|
webcord
|
||||||
ferdium
|
ferdium
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{ pkgs, config }:
|
{
|
||||||
let
|
pkgs,
|
||||||
|
config,
|
||||||
|
}: let
|
||||||
cfg = config.jhome.gui.sway;
|
cfg = config.jhome.gui.sway;
|
||||||
passmenu = "${pkgs.jpassmenu}/bin/jpassmenu";
|
passmenu = "${pkgs.jpassmenu}/bin/jpassmenu";
|
||||||
selectAudio = "${pkgs.audiomenu}/bin/audiomenu --menu 'fuzzel --dmenu'";
|
selectAudio = "${pkgs.audiomenu}/bin/audiomenu --menu 'fuzzel --dmenu'";
|
||||||
|
@ -52,12 +54,9 @@ let
|
||||||
dir2resize.left = "resize shrink width";
|
dir2resize.left = "resize shrink width";
|
||||||
# Bind a key combo to an action
|
# Bind a key combo to an action
|
||||||
genKeybind = prefix: action: key: {"${prefix key}" = "${action key}";};
|
genKeybind = prefix: action: key: {"${prefix key}" = "${action key}";};
|
||||||
genKey =
|
genKey = prefix: action: genKeybind ({key, ...}: prefix key) ({direction, ...}: action direction);
|
||||||
prefix: action: genKeybind ({ key, ... }: prefix key) ({ direction, ... }: action direction);
|
genArrow = prefix: action: genKeybind ({arrow, ...}: prefix arrow) ({direction, ...}: action direction);
|
||||||
genArrow =
|
genArrowAndKey = prefix: action: key:
|
||||||
prefix: action: genKeybind ({ arrow, ... }: prefix arrow) ({ direction, ... }: action direction);
|
|
||||||
genArrowAndKey =
|
|
||||||
prefix: action: key:
|
|
||||||
(genKey prefix action key) // (genArrow prefix action key);
|
(genKey prefix action key) // (genArrow prefix action key);
|
||||||
# Move window
|
# Move window
|
||||||
moveWindowKeybinds = map (genArrowAndKey modShiftKeybind (dir: "move ${dir}")) dirs;
|
moveWindowKeybinds = map (genArrowAndKey modShiftKeybind (dir: "move ${dir}")) dirs;
|
||||||
|
@ -66,17 +65,23 @@ let
|
||||||
# Resize window
|
# Resize window
|
||||||
resizeWindowKeybinds = map (genArrowAndKey modCtrlKeybind (dir: dir2resize.${dir})) dirs;
|
resizeWindowKeybinds = map (genArrowAndKey modCtrlKeybind (dir: dir2resize.${dir})) dirs;
|
||||||
# Move container to workspace
|
# Move container to workspace
|
||||||
moveWorkspaceKeybindings = map (genKeybind modShiftKeybind (
|
moveWorkspaceKeybindings =
|
||||||
|
map (genKeybind modShiftKeybind (
|
||||||
number: "move container to workspace number ${number}"
|
number: "move container to workspace number ${number}"
|
||||||
)) workspaces;
|
))
|
||||||
|
workspaces;
|
||||||
# Focus workspace
|
# Focus workspace
|
||||||
focusWorkspaceKeybindings = map (genKeybind modKeybind (
|
focusWorkspaceKeybindings =
|
||||||
|
map (genKeybind modKeybind (
|
||||||
number: "workspace number ${number}"
|
number: "workspace number ${number}"
|
||||||
)) workspaces;
|
))
|
||||||
|
workspaces;
|
||||||
# Move container to Workspace and focus on it
|
# Move container to Workspace and focus on it
|
||||||
moveFocusWorkspaceKeybindings = map (genKeybind modCtrlShiftKeybind (
|
moveFocusWorkspaceKeybindings =
|
||||||
|
map (genKeybind modCtrlShiftKeybind (
|
||||||
number: "move container to workspace number ${number}; workspace number ${number}"
|
number: "move container to workspace number ${number}; workspace number ${number}"
|
||||||
)) workspaces;
|
))
|
||||||
|
workspaces;
|
||||||
in
|
in
|
||||||
builtins.foldl' (l: r: l // r)
|
builtins.foldl' (l: r: l // r)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,15 +1,16 @@
|
||||||
{ config, pkgs }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
}: let
|
||||||
cfg = config.jhome.gui.sway;
|
cfg = config.jhome.gui.sway;
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
terminal = config.jhome.gui.terminal;
|
terminal = config.jhome.gui.terminal;
|
||||||
termCmd =
|
termCmd =
|
||||||
if terminal == "wezterm" then
|
if terminal == "wezterm"
|
||||||
"wezterm start"
|
then "wezterm start"
|
||||||
else if terminal == "alacritty" then
|
else if terminal == "alacritty"
|
||||||
"alacritty -e"
|
then "alacritty -e"
|
||||||
else
|
else builtins.abort "no command configured for ${terminal}";
|
||||||
builtins.abort "no command configured for ${terminal}";
|
|
||||||
menu = "${pkgs.fuzzel}/bin/fuzzel --terminal '${termCmd}'";
|
menu = "${pkgs.fuzzel}/bin/fuzzel --terminal '${termCmd}'";
|
||||||
# currently, there is some friction between sway and gtk:
|
# currently, there is some friction between sway and gtk:
|
||||||
# https://github.com/swaywm/sway/wiki/GTK-3-settings-on-Wayland
|
# https://github.com/swaywm/sway/wiki/GTK-3-settings-on-Wayland
|
||||||
|
@ -17,8 +18,7 @@ let
|
||||||
# for gsettings to work, we need to tell it where the schemas are
|
# for gsettings to work, we need to tell it where the schemas are
|
||||||
# using the XDG_DATA_DIR environment variable
|
# using the XDG_DATA_DIR environment variable
|
||||||
# run at the end of sway config
|
# run at the end of sway config
|
||||||
configure-gtk =
|
configure-gtk = let
|
||||||
let
|
|
||||||
schema = pkgs.gsettings-desktop-schemas;
|
schema = pkgs.gsettings-desktop-schemas;
|
||||||
datadir = "${schema}/share/gsettings-schemas/${schema.name}";
|
datadir = "${schema}/share/gsettings-schemas/${schema.name}";
|
||||||
in
|
in
|
||||||
|
@ -43,8 +43,7 @@ let
|
||||||
inherit command;
|
inherit command;
|
||||||
always = true;
|
always = true;
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
inherit modifier terminal menu;
|
inherit modifier terminal menu;
|
||||||
keybindings = import ./keybindings.nix {inherit config pkgs;};
|
keybindings = import ./keybindings.nix {inherit config pkgs;};
|
||||||
# Appearance
|
# Appearance
|
||||||
|
@ -73,9 +72,12 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
# Startup scripts
|
# Startup scripts
|
||||||
startup = [
|
startup =
|
||||||
|
[
|
||||||
(cmdAlways "${configure-gtk}/bin/configure-gtk")
|
(cmdAlways "${configure-gtk}/bin/configure-gtk")
|
||||||
] ++ (builtins.map cmdAlways cfg.exec.always) ++ (builtins.map cmdOnce cfg.exec.once);
|
]
|
||||||
|
++ (builtins.map cmdAlways cfg.exec.always)
|
||||||
|
++ (builtins.map cmdOnce cfg.exec.once);
|
||||||
# Keyboard configuration
|
# Keyboard configuration
|
||||||
input."type:keyboard" = {
|
input."type:keyboard" = {
|
||||||
repeat_delay = "300";
|
repeat_delay = "300";
|
||||||
|
|
|
@ -1,21 +1,25 @@
|
||||||
{ config, lib }:
|
|
||||||
let
|
|
||||||
cfg = config.jhome.gui;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
}: let
|
||||||
|
cfg = config.jhome.gui;
|
||||||
|
in {
|
||||||
mainBar.layer = "top";
|
mainBar.layer = "top";
|
||||||
mainBar.position = "top";
|
mainBar.position = "top";
|
||||||
mainBar.margin = "2 2 2 2";
|
mainBar.margin = "2 2 2 2";
|
||||||
# Choose the order of the modules
|
# Choose the order of the modules
|
||||||
mainBar.modules-left = ["sway/workspaces"];
|
mainBar.modules-left = ["sway/workspaces"];
|
||||||
mainBar.modules-center = ["clock"];
|
mainBar.modules-center = ["clock"];
|
||||||
mainBar.modules-right = [
|
mainBar.modules-right =
|
||||||
|
[
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
"backlight"
|
"backlight"
|
||||||
"battery"
|
"battery"
|
||||||
"sway/language"
|
"sway/language"
|
||||||
"memory"
|
"memory"
|
||||||
] ++ lib.optional (cfg.tempInfo != null) "temperature" ++ [ "tray" ];
|
]
|
||||||
|
++ lib.optional (cfg.tempInfo != null) "temperature"
|
||||||
|
++ ["tray"];
|
||||||
mainBar."sway/workspaces".disable-scroll = true;
|
mainBar."sway/workspaces".disable-scroll = true;
|
||||||
mainBar."sway/workspaces".persistent-workspaces."1" = [];
|
mainBar."sway/workspaces".persistent-workspaces."1" = [];
|
||||||
mainBar."sway/workspaces".persistent-workspaces."2" = [];
|
mainBar."sway/workspaces".persistent-workspaces."2" = [];
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
{ lib, pkgs, ... }:
|
{
|
||||||
let
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
|
|
||||||
mkExtraPackagesOption =
|
mkExtraPackagesOption = name: defaultPkgsPath: let
|
||||||
name: defaultPkgsPath:
|
text =
|
||||||
let
|
lib.strings.concatMapStringsSep " " (
|
||||||
text = lib.strings.concatMapStringsSep " " (
|
|
||||||
pkgPath: "pkgs." + (lib.strings.concatStringsSep "." pkgPath)
|
pkgPath: "pkgs." + (lib.strings.concatStringsSep "." pkgPath)
|
||||||
) defaultPkgsPath;
|
)
|
||||||
|
defaultPkgsPath;
|
||||||
defaultText = lib.literalExpression "[ ${text} ]";
|
defaultText = lib.literalExpression "[ ${text} ]";
|
||||||
default = builtins.map (pkgPath: lib.attrsets.getAttrFromPath pkgPath pkgs) defaultPkgsPath;
|
default = builtins.map (pkgPath: lib.attrsets.getAttrFromPath pkgPath pkgs) defaultPkgsPath;
|
||||||
in
|
in
|
||||||
|
@ -114,7 +117,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
gui.options = {
|
gui.options = {
|
||||||
enable = lib.mkEnableOption ("GUI applications");
|
enable = lib.mkEnableOption "GUI applications";
|
||||||
tempInfo = lib.mkOption {
|
tempInfo = lib.mkOption {
|
||||||
description = "Temperature info to display in the statusbar.";
|
description = "Temperature info to display in the statusbar.";
|
||||||
default = null;
|
default = null;
|
||||||
|
@ -135,8 +138,7 @@ let
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
options.jhome = lib.mkOption {
|
options.jhome = lib.mkOption {
|
||||||
description = "Jalil's default home-manager configuration.";
|
description = "Jalil's default home-manager configuration.";
|
||||||
default = {};
|
default = {};
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{ config, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (config) jhome;
|
inherit (config) jhome;
|
||||||
inherit (cfg.defaultIdentity) signingKey;
|
inherit (cfg.defaultIdentity) signingKey;
|
||||||
|
|
||||||
|
@ -8,8 +11,7 @@ let
|
||||||
hasKey = signingKey != null;
|
hasKey = signingKey != null;
|
||||||
gpgHome = config.programs.gpg.homedir;
|
gpgHome = config.programs.gpg.homedir;
|
||||||
unlockKey = hasConfig && cfg.gpg.unlockKeys != [];
|
unlockKey = hasConfig && cfg.gpg.unlockKeys != [];
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
(lib.mkIf hasConfig {
|
(lib.mkIf hasConfig {
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ nixos-hardware }:
|
{nixos-hardware}: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
|
@ -6,8 +6,7 @@
|
||||||
lib,
|
lib,
|
||||||
modulesPath,
|
modulesPath,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
{
|
|
||||||
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
# Edit this configuration file to define what should be installed on
|
# Edit this configuration file to define what should be installed on
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
{ nixos-hardware }:
|
{nixos-hardware}: {pkgs, ...}: {
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
|
@ -6,8 +6,7 @@
|
||||||
lib,
|
lib,
|
||||||
modulesPath,
|
modulesPath,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
{
|
|
||||||
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
# Edit this configuration file to define what should be installed on
|
# Edit this configuration file to define what should be installed on
|
||||||
# your system. Help is available in the configuration.nix(5) man page, on
|
# your system. Help is available in the configuration.nix(5) man page, on
|
||||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||||
|
{nixos-hardware}: {pkgs, ...}: {
|
||||||
{ nixos-hardware }:
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
|
@ -7,9 +7,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
modulesPath,
|
modulesPath,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
|
|
||||||
{
|
|
||||||
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{...}: {
|
||||||
{
|
|
||||||
services.qemuGuest.enable = true;
|
services.qemuGuest.enable = true;
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
|
|
|
@ -38,11 +38,9 @@
|
||||||
group = "lspConfig";
|
group = "lspConfig";
|
||||||
event = "LspAttach";
|
event = "LspAttach";
|
||||||
pattern = "*";
|
pattern = "*";
|
||||||
callback =
|
callback = let
|
||||||
let
|
|
||||||
opts = "noremap = true, buffer = bufnr";
|
opts = "noremap = true, buffer = bufnr";
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
__raw = ''
|
__raw = ''
|
||||||
function(opts)
|
function(opts)
|
||||||
local bufnr = opts.buf
|
local bufnr = opts.buf
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }@opts:
|
{pkgs, ...} @ opts: {
|
||||||
{
|
|
||||||
imports = [./options.nix];
|
imports = [./options.nix];
|
||||||
|
|
||||||
config.programs.nixvim = (import ./nixvim.nix opts).config;
|
config.programs.nixvim = (import ./nixvim.nix opts).config;
|
||||||
|
|
|
@ -3,16 +3,14 @@
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}@args:
|
} @ args: let
|
||||||
let
|
|
||||||
cfg = config.jhome.nvim;
|
cfg = config.jhome.nvim;
|
||||||
hmAvailable = args ? hmConfig;
|
hmAvailable = args ? hmConfig;
|
||||||
nixosAvailable = args ? nixosConfig;
|
nixosAvailable = args ? nixosConfig;
|
||||||
darwinAvailable = args ? darwinConfig;
|
darwinAvailable = args ? darwinConfig;
|
||||||
canSetAsDefault = hmAvailable || nixosAvailable;
|
canSetAsDefault = hmAvailable || nixosAvailable;
|
||||||
notStandalone = hmAvailable || nixosAvailable || darwinAvailable;
|
notStandalone = hmAvailable || nixosAvailable || darwinAvailable;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
imports = [./options.nix];
|
imports = [./options.nix];
|
||||||
|
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
|
@ -52,12 +50,10 @@ in
|
||||||
plugins = import ./plugins.nix {inherit lib pkgs;};
|
plugins = import ./plugins.nix {inherit lib pkgs;};
|
||||||
keymaps = import ./mappings.nix;
|
keymaps = import ./mappings.nix;
|
||||||
inherit (import ./augroups.nix) autoGroups autoCmd;
|
inherit (import ./augroups.nix) autoGroups autoCmd;
|
||||||
extraPlugins =
|
extraPlugins = let
|
||||||
let
|
|
||||||
jjdescription = pkgs.callPackage ./vim-jjdescription.nix {};
|
jjdescription = pkgs.callPackage ./vim-jjdescription.nix {};
|
||||||
in
|
in
|
||||||
with pkgs.vimPlugins;
|
with pkgs.vimPlugins; [
|
||||||
[
|
|
||||||
nvim-web-devicons
|
nvim-web-devicons
|
||||||
jjdescription
|
jjdescription
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ lib, ... }:
|
{lib, ...}: {
|
||||||
{
|
options.jhome.nvim.enable =
|
||||||
options.jhome.nvim.enable = lib.mkEnableOption "jalil's neovim configuration" // {
|
lib.mkEnableOption "jalil's neovim configuration"
|
||||||
|
// {
|
||||||
default = true;
|
default = true;
|
||||||
example = false;
|
example = false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{ lib, pkgs }:
|
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
}: {
|
||||||
bacon = {
|
bacon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.quickfix.enabled = true;
|
settings.quickfix.enabled = true;
|
||||||
|
@ -196,11 +198,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
indent = true;
|
indent = true;
|
||||||
incrementalSelection.enable = true;
|
incrementalSelection.enable = true;
|
||||||
grammarPackages =
|
grammarPackages = let
|
||||||
let
|
|
||||||
parsers = pkgs.vimPlugins.nvim-treesitter-parsers;
|
parsers = pkgs.vimPlugins.nvim-treesitter-parsers;
|
||||||
in
|
in [
|
||||||
[
|
|
||||||
parsers.asm
|
parsers.asm
|
||||||
parsers.bash
|
parsers.bash
|
||||||
# parsers.bibtex
|
# parsers.bibtex
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ vimUtils, fetchFromGitHub }:
|
{
|
||||||
|
vimUtils,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
vimUtils.buildVimPlugin {
|
vimUtils.buildVimPlugin {
|
||||||
name = "jjdescription";
|
name = "jjdescription";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
{ stylix }:
|
{stylix}: {
|
||||||
{
|
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
cfg = config.jconfig;
|
cfg = config.jconfig;
|
||||||
keysFromGithub = lib.attrsets.mapAttrs' (username: sha256: {
|
keysFromGithub =
|
||||||
|
lib.attrsets.mapAttrs' (username: sha256: {
|
||||||
name = "pubkeys/${username}";
|
name = "pubkeys/${username}";
|
||||||
value = {
|
value = {
|
||||||
mode = "0755";
|
mode = "0755";
|
||||||
|
@ -16,9 +15,9 @@ let
|
||||||
url = "https://github.com/${username}.keys";
|
url = "https://github.com/${username}.keys";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}) cfg.importSSHKeysFromGithub;
|
})
|
||||||
in
|
cfg.importSSHKeysFromGithub;
|
||||||
{
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./options.nix
|
./options.nix
|
||||||
./gui
|
./gui
|
||||||
|
|
|
@ -3,20 +3,20 @@
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
cfg = config.jconfig.gui;
|
cfg = config.jconfig.gui;
|
||||||
enable = config.jconfig.enable && cfg.enable;
|
enable = config.jconfig.enable && cfg.enable;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
(lib.mkIf enable {
|
(lib.mkIf enable {
|
||||||
environment.systemPackages = [
|
environment.systemPackages =
|
||||||
|
[
|
||||||
pkgs.gnome.adwaita-icon-theme
|
pkgs.gnome.adwaita-icon-theme
|
||||||
pkgs.adwaita-qt
|
pkgs.adwaita-qt
|
||||||
pkgs.nordzy-cursor-theme
|
pkgs.nordzy-cursor-theme
|
||||||
pkgs.pinentry-qt
|
pkgs.pinentry-qt
|
||||||
] ++ lib.optional cfg.ydotool.enable pkgs.ydotool;
|
]
|
||||||
|
++ lib.optional cfg.ydotool.enable pkgs.ydotool;
|
||||||
|
|
||||||
systemd.user.services.ydotool = lib.mkIf cfg.ydotool.enable {
|
systemd.user.services.ydotool = lib.mkIf cfg.ydotool.enable {
|
||||||
enable = cfg.ydotool.autoStart;
|
enable = cfg.ydotool.autoStart;
|
||||||
|
|
|
@ -1,16 +1,13 @@
|
||||||
{ lib, ... }:
|
{lib, ...}: let
|
||||||
let
|
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
# Like mkEnableOption but defaults to true
|
# Like mkEnableOption but defaults to true
|
||||||
mkDisableOption =
|
mkDisableOption = option:
|
||||||
option:
|
|
||||||
(lib.mkEnableOption option)
|
(lib.mkEnableOption option)
|
||||||
// {
|
// {
|
||||||
default = true;
|
default = true;
|
||||||
example = false;
|
example = false;
|
||||||
};
|
};
|
||||||
mkImageOption =
|
mkImageOption = {
|
||||||
{
|
|
||||||
description,
|
description,
|
||||||
url,
|
url,
|
||||||
sha256 ? "",
|
sha256 ? "",
|
||||||
|
@ -93,8 +90,7 @@ let
|
||||||
type = types.attrsOf types.str;
|
type = types.attrsOf types.str;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
options.jconfig = lib.mkOption {
|
options.jconfig = lib.mkOption {
|
||||||
description = "Jalil's default NixOS configuration.";
|
description = "Jalil's default NixOS configuration.";
|
||||||
default = {};
|
default = {};
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
{ config, pkgs }:
|
{
|
||||||
let
|
config,
|
||||||
|
pkgs,
|
||||||
|
}: let
|
||||||
cfg = config.jconfig.styling;
|
cfg = config.jconfig.styling;
|
||||||
nerdFontSymbols = pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];};
|
nerdFontSymbols = pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];};
|
||||||
fallbackSymbols = {
|
fallbackSymbols = {
|
||||||
name = "Symbols Nerd Font";
|
name = "Symbols Nerd Font";
|
||||||
package = nerdFontSymbols;
|
package = nerdFontSymbols;
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
autoEnable = cfg.enable;
|
autoEnable = cfg.enable;
|
||||||
image = cfg.wallpaper;
|
image = cfg.wallpaper;
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
||||||
|
|
Loading…
Reference in a new issue