I hereby claim:
- I am ivylikethevine on github.
- I am ivylikethevine (https://keybase.io/ivylikethevine) on keybase.
- I have a public key ASCF80wtCywvBDLzgXSvbBjT8qZjQziq338qCZtnHkcdnwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { config, lib, pkgs, modulesPath, ... }: | |
| { | |
| imports = | |
| [ | |
| ./hardware-configuration.nix | |
| ]; | |
| boot.blacklistedKernelModules = lib.mkDefault [ ]; | |
| boot.kernelPackages = pkgs.linuxPackages_latest; |
| # This configuration is designed to run on a laptop with Ubuntu 22.04LTS server edition. | |
| # Laptop Server Config | |
| sudo echo $'HandleLidSwitch=ignore\nHandleLidSwitchDocked=ignore' | sudo tee -a /etc/systemd/logind.conf && | |
| sudo echo "GRUB_CMDLINE_LINUX_DEFAULT=\"consoleblank=60\"" | sudo tee -a /etc/default/grub && | |
| sudo update-grub | |
| # Install Basics | |
| sudo echo "\$nrconf{restart} = 'l'" | sudo tee -a /etc/needrestart/needrestart.conf && | |
| sudo apt update -y && |
| #!/bin/bash | |
| # Create Workspace Directory to Work From | |
| cd ~ | |
| mkdir workspace | |
| cd workspace | |
| # Update and Upgrade then install basic utilities | |
| sudo apt-get update && sudo apt-get upgrade -y | |
| sudo apt-get install -y rar unrar zip git htop software-properties-common apt-transport-https wget xclip net-tools curl |
| #!/bin/bash | |
| # Create Workspace Directory to Work From | |
| cd ~ | |
| mkdir workspace | |
| cd workspace | |
| # Update and Upgrade then install basic utilities | |
| sudo apt-get update && sudo apt-get upgrade -y | |
| sudo apt-get install -y rar unrar zip git htop software-properties-common apt-transport-https wget xclip net-tools curl |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |