fix deprecations and add sdr stuff
This commit is contained in:
parent
30d45c55f6
commit
f9bb7a157a
@ -15,6 +15,10 @@
|
|||||||
vesktop
|
vesktop
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
nixvim
|
nixvim
|
||||||
|
gnuradio
|
||||||
|
rtl_433
|
||||||
|
urh
|
||||||
|
sdrpp
|
||||||
];
|
];
|
||||||
sessionPath = ["~/.local/bin"];
|
sessionPath = ["~/.local/bin"];
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
|
68
home/framework/programs/alacritty/default.nix
Normal file
68
home/framework/programs/alacritty/default.nix
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
{...}: {
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
general.live_config_reload = true;
|
||||||
|
env.TERM = "xterm-256color";
|
||||||
|
bell.duration = 0;
|
||||||
|
cursor.style = "Block";
|
||||||
|
|
||||||
|
scrolling = {
|
||||||
|
history = 10000;
|
||||||
|
multiplier = 3;
|
||||||
|
};
|
||||||
|
|
||||||
|
window = {
|
||||||
|
opacity = 0.9;
|
||||||
|
};
|
||||||
|
|
||||||
|
mouse.bindings = [
|
||||||
|
{
|
||||||
|
mouse = "Middle";
|
||||||
|
action = "PasteSelection";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
colors = {
|
||||||
|
primary = {
|
||||||
|
background = "0x000000";
|
||||||
|
foreground = "0xeaeaea";
|
||||||
|
};
|
||||||
|
|
||||||
|
# normal = {
|
||||||
|
# black = "0x000000";
|
||||||
|
# red = "0xd54e53";
|
||||||
|
# green = "0xb9ca4a";
|
||||||
|
# yellow = "0xe6c547";
|
||||||
|
# blue = "0x7aa6da";
|
||||||
|
# magenta = "0xc397d8";
|
||||||
|
# cyan = "0x70c0ba";
|
||||||
|
# white = "0xffffff";
|
||||||
|
# };
|
||||||
|
#
|
||||||
|
# bright = {
|
||||||
|
# black = "0x666666";
|
||||||
|
# red = "0xff3334";
|
||||||
|
# green = "0x9ec400";
|
||||||
|
# yellow = "0xe7c547";
|
||||||
|
# blue = "0x7aa6da";
|
||||||
|
# magenta = "0xb77ee0";
|
||||||
|
# cyan = "0x54ced6";
|
||||||
|
# white = "0xffffff";
|
||||||
|
# };
|
||||||
|
#
|
||||||
|
# dim = {
|
||||||
|
# black = "0x333333";
|
||||||
|
# red = "0xf2777a";
|
||||||
|
# green = "0x99cc99";
|
||||||
|
# yellow = "0xffcc66";
|
||||||
|
# blue = "0x6699cc";
|
||||||
|
# magenta = "0xcc99cc";
|
||||||
|
# cyan = "0x66cccc";
|
||||||
|
# white = "0xdddddd";
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
[
|
[
|
||||||
|
./alacritty
|
||||||
./firefox
|
./firefox
|
||||||
./hyprland
|
./hyprland
|
||||||
{
|
{
|
||||||
|
@ -84,6 +84,9 @@ in {
|
|||||||
zfs
|
zfs
|
||||||
lm_sensors
|
lm_sensors
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
rtl_433
|
||||||
|
dump1090
|
||||||
|
rtl-sdr
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users."root".openssh.authorizedKeys.keys = [
|
users.users."root".openssh.authorizedKeys.keys = [
|
||||||
@ -424,6 +427,8 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
rtl-sdr.enable = true;
|
||||||
|
|
||||||
fancontrol = {
|
fancontrol = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = ''
|
config = ''
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
forceImportRoot = false;
|
forceImportRoot = false;
|
||||||
extraPools = ["tank"];
|
extraPools = ["tank"];
|
||||||
};
|
};
|
||||||
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/disk/by-uuid/3652c231-d679-42dd-80f1-e9afccb4ca13";
|
device = "/dev/disk/by-uuid/3652c231-d679-42dd-80f1-e9afccb4ca13";
|
||||||
@ -34,6 +33,7 @@
|
|||||||
allowDiscards = true;
|
allowDiscards = true;
|
||||||
keyFileSize = 4096;
|
keyFileSize = 4096;
|
||||||
keyFile = "/dev/disk/by-id/usb-Generic_Flash_Disk_D5A325A0-0:0";
|
keyFile = "/dev/disk/by-id/usb-Generic_Flash_Disk_D5A325A0-0:0";
|
||||||
|
tryEmptyPassphrase = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ in {
|
|||||||
np = nixpkgs;
|
np = nixpkgs;
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
ip = "192.168.1.11";
|
ip = "192.168.1.11";
|
||||||
# remoteBuild = false;
|
remoteBuild = false;
|
||||||
file = ./celestia/configuration.nix;
|
file = ./celestia/configuration.nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -33,6 +33,8 @@
|
|||||||
extraPackages = [pkgs.vaapiVdpau];
|
extraPackages = [pkgs.vaapiVdpau];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hardware.rtl-sdr.enable = true;
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
||||||
security.pam.services.swaylock = {};
|
security.pam.services.swaylock = {};
|
||||||
@ -111,7 +113,7 @@
|
|||||||
|
|
||||||
users.users.patrick = {
|
users.users.patrick = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = ["wheel"];
|
extraGroups = ["wheel" "plugdev"];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user