mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Compare commits
No commits in common. "0ad02053102be5cb25e1108f3c57de1082ad23fa" and "72ef424ba1bfee92f6705c71a84b4415ec038c04" have entirely different histories.
0ad0205310
...
72ef424ba1
5 changed files with 21 additions and 42 deletions
BIN
hosts/murk/IMG_20250418_145104_DRO.jpg
Normal file
BIN
hosts/murk/IMG_20250418_145104_DRO.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 MiB |
|
|
@ -1,21 +1,13 @@
|
||||||
{
|
{ config, lib, pkgs, inputs, system, sources, modulesPath, ... }:
|
||||||
config,
|
let cfg = config.mods;
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
system,
|
|
||||||
sources,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
cfg = config.mods;
|
|
||||||
in {
|
in {
|
||||||
# Hardware
|
# Hardware
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
"${
|
"${
|
||||||
builtins.fetchTarball {
|
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";
|
sha256 = "0wbx518d2x54yn4xh98cgm65wvj0gpy6nia6ra7ns4j63hx14fkq";
|
||||||
}
|
}
|
||||||
}/module.nix"
|
}/module.nix"
|
||||||
|
|
@ -29,7 +21,6 @@ in {
|
||||||
pkgs.libratbag
|
pkgs.libratbag
|
||||||
pkgs.piper
|
pkgs.piper
|
||||||
pkgs.libpq
|
pkgs.libpq
|
||||||
pkgs.qmk
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# System
|
# System
|
||||||
|
|
@ -97,7 +88,7 @@ in {
|
||||||
mode = "2560x1440";
|
mode = "2560x1440";
|
||||||
position = "0x0";
|
position = "0x0";
|
||||||
rate = "60.00";
|
rate = "60.00";
|
||||||
dpi = 72;
|
dpi = 96;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
right = {
|
right = {
|
||||||
|
|
@ -107,7 +98,7 @@ in {
|
||||||
mode = "2560x1440";
|
mode = "2560x1440";
|
||||||
position = "2560x0";
|
position = "2560x0";
|
||||||
rate = "60.00";
|
rate = "60.00";
|
||||||
dpi = 72;
|
dpi = 96;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -115,9 +106,6 @@ in {
|
||||||
## Mouse
|
## Mouse
|
||||||
services.libinput.mouse.accelProfile = "flat";
|
services.libinput.mouse.accelProfile = "flat";
|
||||||
|
|
||||||
## Keyboard
|
|
||||||
hardware.keyboard.qmk.enable = true;
|
|
||||||
|
|
||||||
# Version of first install
|
# Version of first install
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,13 +27,14 @@ in {
|
||||||
pulseaudio
|
pulseaudio
|
||||||
pavucontrol
|
pavucontrol
|
||||||
alsa-utils
|
alsa-utils
|
||||||
rustdesk-flutter
|
qmk
|
||||||
|
qmk_hid
|
||||||
|
qmk-udev-rules
|
||||||
|
|
||||||
docker
|
docker
|
||||||
fish
|
fish
|
||||||
devenv
|
devenv
|
||||||
dbeaver-bin
|
dbeaver-bin
|
||||||
ruff
|
|
||||||
]
|
]
|
||||||
# Non-free </3
|
# Non-free </3
|
||||||
++ [google-cloud-sdk google-cloud-sql-proxy];
|
++ [google-cloud-sdk google-cloud-sql-proxy];
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 19 MiB After Width: | Height: | Size: 283 KiB |
|
|
@ -1,10 +1,4 @@
|
||||||
{
|
{ pkgs, lib, config, inputs, ... }: {
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
options.mods.terminal.development.enable =
|
options.mods.terminal.development.enable =
|
||||||
lib.mkEnableOption "enables cli editor";
|
lib.mkEnableOption "enables cli editor";
|
||||||
|
|
||||||
|
|
@ -122,12 +116,8 @@
|
||||||
bash.enable = true;
|
bash.enable = true;
|
||||||
rust.enable = true;
|
rust.enable = true;
|
||||||
rust.crates.enable = true;
|
rust.crates.enable = true;
|
||||||
|
|
||||||
python.enable = true;
|
python.enable = true;
|
||||||
python.lsp.server = "pyright";
|
|
||||||
# python.lsp.package = [(lib.getExe pkgs.ruff) "server"];
|
|
||||||
python.format.type = "ruff";
|
python.format.type = "ruff";
|
||||||
|
|
||||||
clang.enable = true;
|
clang.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue