Compare commits
5 Commits
89031aa0af
...
7b6402550a
Author | SHA1 | Date | |
---|---|---|---|
7b6402550a | |||
e44694fb28 | |||
f53a8cc23a | |||
5d596e2296 | |||
e0edef2e30 |
|
@ -218,7 +218,7 @@
|
|||
modules = [
|
||||
nixos-apple-silicon.nixosModules.apple-silicon-support
|
||||
./nixos/machines/foxhut/hardware.nix
|
||||
(import ./nixos/machines/foxhut/boot.nix { inherit pkgs asahi-firmware; })
|
||||
(import ./nixos/machines/foxhut/boot.nix { inherit pkgs pkgs-unstable asahi-firmware; })
|
||||
base
|
||||
networking
|
||||
graphical
|
||||
|
|
|
@ -35,7 +35,8 @@ in rec {
|
|||
gleam erlang
|
||||
ghc
|
||||
( python311.withPackages (ps: with ps; [
|
||||
numpy matplotlib sympy scipy pandas jupyter
|
||||
numpy matplotlib sympy scipy pandas jupyter soundfile
|
||||
pygame
|
||||
# pwntools
|
||||
z3 tqdm
|
||||
pyusb usbtmc
|
||||
|
|
|
@ -65,6 +65,8 @@
|
|||
binutils
|
||||
coreutils
|
||||
|
||||
lsof file traceroute
|
||||
|
||||
home-manager
|
||||
git # for home-manager
|
||||
];
|
||||
|
|
|
@ -60,5 +60,8 @@ in
|
|||
thunderbird
|
||||
glxinfo
|
||||
start-plasma-shortcut
|
||||
remmina
|
||||
libreoffice
|
||||
kicad-small
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
default
|
||||
xkb_symbols "fox" {
|
||||
key <TLDE> {[ U1F408, U1F431, U1F408, U1F431 ]};
|
||||
key <TLDE> {[ comma, semicolon, VoidSymbol, VoidSymbol ]};
|
||||
key <AE01> {[ 1, ampersand, VoidSymbol, VoidSymbol ]};
|
||||
key <AE02> {[ 2, quotedbl, at, VoidSymbol ]};
|
||||
key <AE03> {[ 3, numbersign, VoidSymbol, VoidSymbol ]};
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# 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`).
|
||||
|
||||
{ pkgs, asahi-firmware, ... }:
|
||||
{ pkgs, pkgs-unstable, asahi-firmware, ... }:
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
|
@ -27,5 +27,11 @@
|
|||
device = "/swap";
|
||||
size = 16 * 1024; # 16GB
|
||||
}];
|
||||
|
||||
environment.systemPackages = (with pkgs-unstable; [
|
||||
renoise
|
||||
]) ++ (with pkgs; [
|
||||
prismlauncher
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,15 @@
|
|||
{
|
||||
pkgs,
|
||||
tiny-dfr ? pkgs.tiny-dfr
|
||||
}:
|
||||
let tiny-dfr = pkgs.tiny-dfr.overrideAttrs (old: {
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "xeniagda";
|
||||
repo = "tiny-dfr";
|
||||
rev = "master";
|
||||
hash = "sha256-I2R28wQz4Vd8VonbDcM6TZOn5lnWSXqwX4w/sieaQL8=";
|
||||
};
|
||||
});
|
||||
in
|
||||
assert tiny-dfr.version == "0.3.1";
|
||||
{
|
||||
services.udev.packages = [ tiny-dfr ];
|
||||
|
@ -17,6 +25,7 @@
|
|||
ExecStart = "${tiny-dfr}/bin/tiny-dfr";
|
||||
Restart = "always";
|
||||
};
|
||||
restartIfChanged = true;
|
||||
};
|
||||
environment.etc."tiny-dfr/next-workspace.svg".source = ./tiny-dfr-icons/next-workspace.svg;
|
||||
environment.etc."tiny-dfr/prev-workspace.svg".source = ./tiny-dfr-icons/prev-workspace.svg;
|
||||
|
@ -64,5 +73,12 @@
|
|||
{ Text = "F11"; Action = "F11"; }
|
||||
{ Text = "F12"; Action = "F12"; }
|
||||
];
|
||||
ButtonStyle = {
|
||||
InactiveColor = [0.05 0.0 0.1];
|
||||
ActiveColor = [0.7 0.5 0.8];
|
||||
OnTime = 0.03;
|
||||
OffTime = 0.1;
|
||||
Bounce = 5;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user