Compare commits

..

No commits in common. "0ad02053102be5cb25e1108f3c57de1082ad23fa" and "72ef424ba1bfee92f6705c71a84b4415ec038c04" have entirely different histories.

5 changed files with 21 additions and 42 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

View file

@ -1,21 +1,13 @@
{
config,
lib,
pkgs,
inputs,
system,
sources,
modulesPath,
...
}: let
cfg = config.mods;
{ config, lib, pkgs, inputs, system, sources, modulesPath, ... }:
let cfg = config.mods;
in {
# Hardware
imports = [
./hardware-configuration.nix
"${
builtins.fetchTarball {
url = "https://github.com/nix-community/disko/archive/refs/tags/v1.12.0.tar.gz";
url =
"https://github.com/nix-community/disko/archive/refs/tags/v1.12.0.tar.gz";
sha256 = "0wbx518d2x54yn4xh98cgm65wvj0gpy6nia6ra7ns4j63hx14fkq";
}
}/module.nix"
@ -29,7 +21,6 @@ in {
pkgs.libratbag
pkgs.piper
pkgs.libpq
pkgs.qmk
];
# System
@ -97,7 +88,7 @@ in {
mode = "2560x1440";
position = "0x0";
rate = "60.00";
dpi = 72;
dpi = 96;
};
};
right = {
@ -107,7 +98,7 @@ in {
mode = "2560x1440";
position = "2560x0";
rate = "60.00";
dpi = 72;
dpi = 96;
};
};
};
@ -115,9 +106,6 @@ in {
## Mouse
services.libinput.mouse.accelProfile = "flat";
## Keyboard
hardware.keyboard.qmk.enable = true;
# Version of first install
system.stateVersion = "23.05";
}

View file

@ -27,13 +27,14 @@ in {
pulseaudio
pavucontrol
alsa-utils
rustdesk-flutter
qmk
qmk_hid
qmk-udev-rules
docker
fish
devenv
dbeaver-bin
ruff
]
# Non-free </3
++ [google-cloud-sdk google-cloud-sql-proxy];

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 MiB

After

Width:  |  Height:  |  Size: 283 KiB

Before After
Before After

View file

@ -1,10 +1,4 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
{ pkgs, lib, config, inputs, ... }: {
options.mods.terminal.development.enable =
lib.mkEnableOption "enables cli editor";
@ -122,12 +116,8 @@
bash.enable = true;
rust.enable = true;
rust.crates.enable = true;
python.enable = true;
python.lsp.server = "pyright";
# python.lsp.package = [(lib.getExe pkgs.ruff) "server"];
python.format.type = "ruff";
clang.enable = true;
};