This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "Launch Sonic Robo Blast 2"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
}; | |
outputs = { self, nixpkgs, ... }: let | |
pkgs = import nixpkgs { system = "x86_64-linux"; }; | |
srb2 = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
import java.util.ArrayList; | |
import java.util.Random; | |
public class Main { | |
public static ArrayList<Integer> createArray(Integer size) { | |
var r = new Random(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
{ | |
imports = [ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
]; | |
services.acpid.enable = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set $mod Mod4 | |
input "type:touchpad" { | |
click_method clickfinger | |
} | |
input * { | |
xkb_options "lv3:ralt_alt,caps:escape" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
let | |
user = "tombert"; | |
hostname = "puter"; | |
in { | |
system.stateVersion = "24.05"; | |
time = { timeZone = "America/New_York"; }; | |
boot = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
let | |
user = "tombert"; | |
hostname = "puter"; | |
in { | |
system.stateVersion = "24.05"; | |
time = { timeZone = "America/New_York"; }; | |
boot = { |
OlderNewer