run format
This commit is contained in:
parent
800f63b000
commit
40840a8084
15 changed files with 661 additions and 614 deletions
21
flake.lock
21
flake.lock
|
@ -595,6 +595,7 @@
|
|||
"nixpkgs": "nixpkgs_2",
|
||||
"nvf": "nvf",
|
||||
"rust-overlay": "rust-overlay_2",
|
||||
"zen-browser": "zen-browser",
|
||||
"zig": "zig",
|
||||
"zls": "zls"
|
||||
}
|
||||
|
@ -845,6 +846,26 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"zen-browser": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1748059546,
|
||||
"narHash": "sha256-e0jy8RU8ofOdeS5gF9Hir+M5Wn0q7D8MkpeQXsOJdu4=",
|
||||
"owner": "youwen5",
|
||||
"repo": "zen-browser-flake",
|
||||
"rev": "716a5af28d686d67146d01b14112c919b6133a84",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "youwen5",
|
||||
"repo": "zen-browser-flake",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"zig": {
|
||||
"inputs": {
|
||||
"flake-compat": "flake-compat",
|
||||
|
|
219
flake.nix
219
flake.nix
|
@ -29,6 +29,10 @@
|
|||
moonlight.url = "github:moonlight-mod/moonlight"; # Add `/develop` to the flake URL to use nightly.
|
||||
moonlight.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
zen-browser = {
|
||||
url = "github:youwen5/zen-browser-flake";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nh.url = "github:viperML/nh";
|
||||
nh.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
|
@ -37,76 +41,79 @@
|
|||
nix-index-database.url = "github:nix-community/nix-index-database";
|
||||
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
lix-module,
|
||||
darwin,
|
||||
...
|
||||
} @ inputs: let
|
||||
lib = nixpkgs.lib;
|
||||
# TODO: apply these overlays sooner and remove uses of legacyPackages elsewhere.
|
||||
overlays = [
|
||||
inputs.zig.overlays.default
|
||||
inputs.rust-overlay.overlays.default
|
||||
inputs.nh.overlays.default
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
lix-module,
|
||||
darwin,
|
||||
...
|
||||
}@inputs:
|
||||
let
|
||||
lib = nixpkgs.lib;
|
||||
# TODO: apply these overlays sooner and remove uses of legacyPackages elsewhere.
|
||||
overlays = [
|
||||
inputs.zig.overlays.default
|
||||
inputs.rust-overlay.overlays.default
|
||||
inputs.nh.overlays.default
|
||||
|
||||
# https://github.com/LnL7/nix-darwin/issues/1041
|
||||
(_: prev: {
|
||||
karabiner-elements = prev.karabiner-elements.overrideAttrs (old: {
|
||||
version = "14.13.0";
|
||||
# https://github.com/LnL7/nix-darwin/issues/1041
|
||||
(_: prev: {
|
||||
karabiner-elements = prev.karabiner-elements.overrideAttrs (old: {
|
||||
version = "14.13.0";
|
||||
|
||||
src = prev.fetchurl {
|
||||
inherit (old.src) url;
|
||||
hash = "sha256-gmJwoht/Tfm5qMecmq1N6PSAIfWOqsvuHU8VDJY8bLw=";
|
||||
};
|
||||
});
|
||||
})
|
||||
];
|
||||
|
||||
# Users of this flake currently use x86_64 Linux and Apple Silicon
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-darwin"
|
||||
];
|
||||
forAllSystems = f:
|
||||
builtins.listToAttrs (
|
||||
builtins.map (system: {
|
||||
name = system;
|
||||
value = f (
|
||||
inputs
|
||||
// {
|
||||
inherit system;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
}
|
||||
);
|
||||
src = prev.fetchurl {
|
||||
inherit (old.src) url;
|
||||
hash = "sha256-gmJwoht/Tfm5qMecmq1N6PSAIfWOqsvuHU8VDJY8bLw=";
|
||||
};
|
||||
});
|
||||
})
|
||||
systems
|
||||
);
|
||||
];
|
||||
|
||||
mkSystem = import ./lib/mkSystem.nix {
|
||||
inherit
|
||||
overlays
|
||||
nixpkgs
|
||||
lix-module
|
||||
inputs
|
||||
mkNeovim
|
||||
;
|
||||
};
|
||||
mkNeovim = import ./lib/mkNeovim.nix {
|
||||
inherit
|
||||
self
|
||||
overlays
|
||||
nixpkgs
|
||||
inputs
|
||||
;
|
||||
};
|
||||
in rec {
|
||||
inherit self;
|
||||
# "nix fmt"
|
||||
formatter = forAllSystems (inputs: inputs.pkgs.nixfmt-tree);
|
||||
packages = forAllSystems (
|
||||
{system, ...}:
|
||||
# Users of this flake currently use x86_64 Linux and Apple Silicon
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-darwin"
|
||||
];
|
||||
forAllSystems =
|
||||
f:
|
||||
builtins.listToAttrs (
|
||||
builtins.map (system: {
|
||||
name = system;
|
||||
value = f (
|
||||
inputs
|
||||
// {
|
||||
inherit system;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
}
|
||||
);
|
||||
}) systems
|
||||
);
|
||||
|
||||
mkSystem = import ./lib/mkSystem.nix {
|
||||
inherit
|
||||
overlays
|
||||
nixpkgs
|
||||
lix-module
|
||||
inputs
|
||||
mkNeovim
|
||||
;
|
||||
};
|
||||
mkNeovim = import ./lib/mkNeovim.nix {
|
||||
inherit
|
||||
self
|
||||
overlays
|
||||
nixpkgs
|
||||
inputs
|
||||
;
|
||||
};
|
||||
in
|
||||
rec {
|
||||
inherit self;
|
||||
# "nix fmt"
|
||||
formatter = forAllSystems (inputs: inputs.pkgs.nixfmt-tree);
|
||||
packages = forAllSystems (
|
||||
{ system, ... }:
|
||||
{
|
||||
nvim-chloe = mkNeovim "chloe" system;
|
||||
nvim-natalie = mkNeovim "natalie" system;
|
||||
|
@ -115,46 +122,48 @@
|
|||
# "nix run .#darwin-rebuild"
|
||||
darwin-rebuild = darwin.packages.aarch64-darwin.darwin-rebuild;
|
||||
}
|
||||
);
|
||||
);
|
||||
|
||||
# natalie's desktop computer
|
||||
nixosConfigurations.nixos = mkSystem "nixos" {
|
||||
user = "natalie";
|
||||
host = "desktop";
|
||||
system = "x86_64-linux";
|
||||
extraModules = [
|
||||
];
|
||||
};
|
||||
# natalie's laptop
|
||||
darwinConfigurations."Natalies-MacBook-Air" = mkSystem "Natalies-MacBook-Air" {
|
||||
user = "natalie";
|
||||
host = "laptop";
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
# natalie's desktop computer
|
||||
nixosConfigurations.nixos = mkSystem "nixos" {
|
||||
user = "natalie";
|
||||
host = "desktop";
|
||||
system = "x86_64-linux";
|
||||
extraModules = [
|
||||
];
|
||||
};
|
||||
# natalie's laptop
|
||||
darwinConfigurations."Natalies-MacBook-Air" = mkSystem "Natalies-MacBook-Air" {
|
||||
user = "natalie";
|
||||
host = "laptop";
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
|
||||
# chloe's mac studio "sandwich"
|
||||
darwinConfigurations.sandwich = mkSystem "sandwich" {
|
||||
user = "chloe";
|
||||
host = "sandwich";
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
# chloe's macbook air "paperback"
|
||||
darwinConfigurations.paperback = mkSystem "paperback" {
|
||||
user = "chloe";
|
||||
host = "paperback";
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
# chloe's mac studio "sandwich"
|
||||
darwinConfigurations.sandwich = mkSystem "sandwich" {
|
||||
user = "chloe";
|
||||
host = "sandwich";
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
# chloe's macbook air "paperback"
|
||||
darwinConfigurations.paperback = mkSystem "paperback" {
|
||||
user = "chloe";
|
||||
host = "paperback";
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
|
||||
# generate checks for "nix flake check --all-systems --no-build"
|
||||
checks.aarch64-darwin = builtins.listToAttrs (
|
||||
builtins.map (
|
||||
name: let
|
||||
d = darwinConfigurations.${name}.system;
|
||||
in {
|
||||
name = "darwinConfiguration-" + d.name;
|
||||
value = d;
|
||||
}
|
||||
) (builtins.attrNames darwinConfigurations)
|
||||
);
|
||||
};
|
||||
# generate checks for "nix flake check --all-systems --no-build"
|
||||
checks.aarch64-darwin = builtins.listToAttrs (
|
||||
builtins.map (
|
||||
name:
|
||||
let
|
||||
d = darwinConfigurations.${name}.system;
|
||||
in
|
||||
{
|
||||
name = "darwinConfiguration-" + d.name;
|
||||
value = d;
|
||||
}
|
||||
) (builtins.attrNames darwinConfigurations)
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
# TODO: apply overlays here
|
||||
overlays,
|
||||
inputs,
|
||||
}: user: system: let
|
||||
}:
|
||||
user: system:
|
||||
let
|
||||
darwin = nixpkgs.lib.strings.hasSuffix "-darwin" system;
|
||||
|
||||
host = {
|
||||
|
@ -15,15 +17,15 @@
|
|||
userDir = ../users + "/${user}";
|
||||
userConfig = import (userDir + "/user.nix");
|
||||
in
|
||||
(inputs.nvf.lib.neovimConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
modules = builtins.filter (f: f != null) [
|
||||
(../users + ("/" + user + "/vim.nix"))
|
||||
../modules/neovim
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
inherit host;
|
||||
flake = self;
|
||||
user = userConfig;
|
||||
};
|
||||
}).neovim
|
||||
(inputs.nvf.lib.neovimConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
modules = builtins.filter (f: f != null) [
|
||||
(../users + ("/" + user + "/vim.nix"))
|
||||
../modules/neovim
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
inherit host;
|
||||
flake = self;
|
||||
user = userConfig;
|
||||
};
|
||||
}).neovim
|
||||
|
|
|
@ -8,14 +8,14 @@
|
|||
host,
|
||||
mainHomeImports,
|
||||
...
|
||||
}: let
|
||||
}:
|
||||
let
|
||||
cfg = config.programs;
|
||||
in {
|
||||
imports =
|
||||
mainHomeImports
|
||||
++ [
|
||||
./macos/sketchybar.nix
|
||||
];
|
||||
in
|
||||
{
|
||||
imports = mainHomeImports ++ [
|
||||
./macos/sketchybar.nix
|
||||
];
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
nix-index.enable = true;
|
||||
|
@ -80,7 +80,7 @@ in {
|
|||
}
|
||||
];
|
||||
shellAliases =
|
||||
{}
|
||||
{ }
|
||||
// lib.optionalAttrs (!host.darwin) {
|
||||
reboot-windows = "sudo efibootmgr --bootnext 0000; sudo reboot -h now";
|
||||
};
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -4,9 +4,11 @@
|
|||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
}:
|
||||
let
|
||||
tiling = config.shared.darwin.tiling.enable;
|
||||
in {
|
||||
in
|
||||
{
|
||||
# Use touchid or watch to activate sudo
|
||||
security.pam.services.sudo_local = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services = {
|
||||
avahi = {
|
||||
enable = true;
|
||||
|
@ -40,7 +41,7 @@
|
|||
# Enable CUPS to print documents.
|
||||
printing = {
|
||||
enable = true;
|
||||
drivers = [pkgs.brlaser]; # Brother printer driver
|
||||
drivers = [ pkgs.brlaser ]; # Brother printer driver
|
||||
};
|
||||
|
||||
pipewire = {
|
||||
|
@ -55,7 +56,7 @@
|
|||
|
||||
openssh = {
|
||||
enable = true;
|
||||
ports = [22];
|
||||
ports = [ 22 ];
|
||||
settings = {
|
||||
PasswordAuthentication = true;
|
||||
UseDns = true;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{inputs, ...}: {
|
||||
{ inputs, ... }:
|
||||
{
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
user,
|
||||
host,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
|
@ -17,7 +18,7 @@
|
|||
enable = true;
|
||||
# Certain features, including CLI integration and system authentication support,
|
||||
# require enabling PolKit integration on some desktop environments (e.g. Plasma).
|
||||
polkitPolicyOwners = [user.username];
|
||||
polkitPolicyOwners = [ user.username ];
|
||||
};
|
||||
|
||||
noisetorch.enable = true;
|
||||
|
@ -34,7 +35,7 @@
|
|||
|
||||
steam = {
|
||||
enable = true;
|
||||
package = with pkgs; steam.override {extraPkgs = pkgs: [attr];};
|
||||
package = with pkgs; steam.override { extraPkgs = pkgs: [ attr ]; };
|
||||
};
|
||||
|
||||
git = {
|
||||
|
@ -58,7 +59,7 @@
|
|||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
extraPortals = with pkgs; [xdg-desktop-portal-gtk];
|
||||
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
|
||||
};
|
||||
virtualisation = {
|
||||
containers.enable = true;
|
||||
|
@ -83,14 +84,14 @@
|
|||
hybrid-sleep.enable = false;
|
||||
};
|
||||
|
||||
services.monitord.wantedBy = ["multi-user.target"];
|
||||
services.monitord.wantedBy = [ "multi-user.target" ];
|
||||
};
|
||||
|
||||
i18n = {
|
||||
# Select internationalisation properties.
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
|
||||
supportedLocales = ["all"];
|
||||
supportedLocales = [ "all" ];
|
||||
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "en_US.UTF-8";
|
||||
|
@ -170,7 +171,7 @@
|
|||
};
|
||||
interfaces.enp11s0.wakeOnLan = {
|
||||
enable = true;
|
||||
policy = ["magic"];
|
||||
policy = [ "magic" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
programs.mangohud.enable = true;
|
||||
home = {
|
||||
stateVersion = "23.05"; # Please read the comment before changing.
|
||||
|
||||
|
@ -29,6 +30,7 @@
|
|||
wineWowPackages.stable
|
||||
winetricks
|
||||
(prismlauncher.override { gamemodeSupport = true; })
|
||||
umu-launcher
|
||||
|
||||
#window manager stuff
|
||||
wofi
|
||||
|
@ -50,8 +52,8 @@
|
|||
signal-desktop
|
||||
inputs.zls.packages.x86_64-linux.zls
|
||||
rust-bin.stable.latest.default
|
||||
inputs.zen-browser.packages.x86_64-linux.default
|
||||
];
|
||||
# programs.mangohud.enable = true;
|
||||
};
|
||||
|
||||
# xdg.mimeApps.defaultApplications."inode/directory" = "dolphin.desktop";
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
pkgs,
|
||||
lib,
|
||||
...
|
||||
} @ args: {
|
||||
}@args:
|
||||
{
|
||||
programs = {
|
||||
# sort-lines:start
|
||||
atuin.enable = true;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
pinentry_mac
|
||||
];
|
||||
|
@ -6,7 +7,7 @@
|
|||
# Custom configuration modules in "modules" are shared between users,
|
||||
# and can be configured in this "shared" namespace
|
||||
shared.darwin = {
|
||||
macAppStoreApps = ["wireguard"];
|
||||
macAppStoreApps = [ "wireguard" ];
|
||||
};
|
||||
|
||||
# Create /etc/zshrc that loads the nix-darwin environment.
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{...}: {
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./keybinds.nix
|
||||
./languages.nix
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
vim = {
|
||||
lazy.plugins."lean.nvim" = {
|
||||
enabled = true;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
vim = {
|
||||
visuals = {
|
||||
indent-blankline = {
|
||||
|
|
Loading…
Reference in a new issue