push
This commit is contained in:
20
main.nix
20
main.nix
@@ -1,7 +1,8 @@
|
|||||||
|
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
users.users.bug = {
|
users.users.bug = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Bug";
|
description = "Bug";
|
||||||
@@ -13,6 +14,8 @@
|
|||||||
|
|
||||||
(python3.withPackages (ps: with ps; [
|
(python3.withPackages (ps: with ps; [
|
||||||
pip
|
pip
|
||||||
|
pynput
|
||||||
|
python-uinput
|
||||||
]))
|
]))
|
||||||
|
|
||||||
luau
|
luau
|
||||||
@@ -23,7 +26,7 @@
|
|||||||
luautf8
|
luautf8
|
||||||
jsregexp
|
jsregexp
|
||||||
]))
|
]))
|
||||||
|
|
||||||
nodejs
|
nodejs
|
||||||
|
|
||||||
blender
|
blender
|
||||||
@@ -38,7 +41,7 @@
|
|||||||
|
|
||||||
obsidian
|
obsidian
|
||||||
|
|
||||||
# vesktop
|
#vesktop
|
||||||
nicotine-plus
|
nicotine-plus
|
||||||
furnace
|
furnace
|
||||||
|
|
||||||
@@ -50,15 +53,19 @@
|
|||||||
mapscii
|
mapscii
|
||||||
|
|
||||||
cloudflared
|
cloudflared
|
||||||
|
|
||||||
|
base16-schemes
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.dconf.enable = lib.mkDefault true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
bash.shellAliases = {
|
bash.shellAliases = {
|
||||||
rebuild = "sudo nixos-rebuild switch --impure";
|
rebuild = "sudo nixos-rebuild switch --impure";
|
||||||
|
|
||||||
pi = "ssh -t $(avahi-resolve-host-name -4 pi.home | awk '{print $2}')";
|
pissh = "ssh -t $(avahi-resolve-host-name -4 pi.home | awk '{print $2}')";
|
||||||
pid = "pi \"cd $(pwd) && bash\"";
|
pi = "pissh \"cd $(pwd) && bash\"";
|
||||||
|
|
||||||
pico = "ssh pico.sh";
|
pico = "ssh pico.sh";
|
||||||
|
|
||||||
@@ -87,7 +94,10 @@ ssh -R \"$\{name}:80:localhost:$\{port}\" tuns.sh'\'' _";
|
|||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
home-manager
|
||||||
git
|
git
|
||||||
wget
|
wget
|
||||||
gcc
|
gcc
|
||||||
|
|||||||
Reference in New Issue
Block a user