315 lines
8.5 KiB
Nix
315 lines
8.5 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, inputs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
#hardware.thinkpad-dock = {
|
||
# enable = true;
|
||
# dockEvent = "${pkgs.wlr-randr}/bin/wlr-randr --output eDP-1 --pos 0,1362";
|
||
# undockEvent = "${pkgs.wlr-randr}/bin/wlr-randr --output eDP-1 --pos 0,0";
|
||
#};
|
||
programs.gamemode.enable = true;
|
||
|
||
virtualisation.kvmgt = {
|
||
enable = true;
|
||
vgpus = {
|
||
"i915-GVTg_V4_4" = {
|
||
uuid = [ "b4c3049a-74a1-11ef-8112-df4a4be644fd" ];
|
||
};
|
||
};
|
||
};
|
||
services.gvfs.enable = true;
|
||
security.sudo.package = pkgs.sudo.override { withInsults = true; };
|
||
programs.thunderbird.enable = true;
|
||
services.kmonad = {
|
||
enable = true;
|
||
keyboards.thinkpad = {
|
||
device = "/dev/input/by-path/platform-i8042-serio-0-event-kbd";
|
||
config = (builtins.readFile ./keymap.kbd);
|
||
defcfg = {
|
||
enable = true;
|
||
fallthrough = true;
|
||
compose.key = null;
|
||
};
|
||
};
|
||
};
|
||
programs.steam.enable = true;
|
||
virtualisation.libvirtd = {
|
||
enable = true;
|
||
qemu = {
|
||
package = pkgs.qemu_kvm;
|
||
runAsRoot = true;
|
||
swtpm.enable = true;
|
||
ovmf = {
|
||
enable = true;
|
||
packages = [(pkgs.OVMF.override {
|
||
secureBoot = true;
|
||
tpmSupport = true;
|
||
}).fd];
|
||
};
|
||
};
|
||
};
|
||
services.gnome.gnome-keyring.enable = true;
|
||
programs.virt-manager.enable = true;
|
||
hardware.bluetooth = {
|
||
enable = true;
|
||
powerOnBoot = true;
|
||
};
|
||
services.tailscale = {
|
||
enable = true;
|
||
useRoutingFeatures = "client";
|
||
};
|
||
services.blueman.enable = true;
|
||
programs.adb.enable = true;
|
||
services.greetd = {
|
||
enable = true;
|
||
restart = true;
|
||
settings.default_session = {
|
||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd sway";
|
||
user = "greeter";
|
||
};
|
||
};
|
||
services.acpid = {
|
||
enable = true;
|
||
handlers = {
|
||
pauseOnDisconnect = {
|
||
event = "jack/headphone HEADPHONE unplug";
|
||
action = "${pkgs.sudo}/bin/sudo -u maya XDG_RUNTIME_DIR=/run/user/1000/ ${pkgs.playerctl}/bin/playerctl pause";
|
||
};
|
||
};
|
||
};
|
||
programs.kdeconnect.enable = true;
|
||
programs.dconf.enable = true;
|
||
systemd.services.greetd.serviceConfig = {
|
||
Type = "idle";
|
||
StandardInput = "tty";
|
||
StandardOutput = "tty";
|
||
StandardError = "journal";
|
||
TTYReset = "true";
|
||
TTYHangup = "true";
|
||
TTYVTDisallocate = "true";
|
||
};
|
||
|
||
systemd.services = {
|
||
NetworkManager.requires = ["ModemManager.service"];
|
||
};
|
||
|
||
programs.niri = {
|
||
enable = true;
|
||
package = inputs.niri.packages.${pkgs.stdenv.hostPlatform.system}.niri-unstable;
|
||
};
|
||
services.tlp.enable = true;
|
||
services.tlp.settings = {
|
||
CPU_SCALING_GOVERNOR_ON_BAT = "ondemand";
|
||
CPU_SCALING_GOVERNOR_ON_AC = "performance";
|
||
};
|
||
hardware.graphics = {
|
||
enable = true;
|
||
extraPackages = with pkgs; [
|
||
mesa
|
||
mesa.drivers
|
||
intel-media-sdk
|
||
intel-vaapi-driver
|
||
libvdpau-va-gl
|
||
];
|
||
enable32Bit = true;
|
||
extraPackages32 = with pkgs.pkgsi686Linux; [
|
||
intel-vaapi-driver
|
||
mesa
|
||
mesa.drivers
|
||
libvdpau-va-gl
|
||
];
|
||
};
|
||
environment.sessionVariables = { LIBVA_DRIVER_NAME = "i965"; ELECTRON_OZONE_PLATFORM_HINT = "wayland"; PASSWORD_STORE_DIR = "$HOME/sync/general/pass";};
|
||
security.polkit.enable = true;
|
||
security.pam = {
|
||
services.gtklock = {};
|
||
services.greetd = {
|
||
enableGnomeKeyring = true;
|
||
gnupg.enable = true;
|
||
};
|
||
services.login = {
|
||
enableGnomeKeyring = true;
|
||
gnupg.enable = true;
|
||
};
|
||
};
|
||
services.fprintd.enable = true;
|
||
services.udisks2.enable = true;
|
||
# Bootloader.
|
||
boot.loader.systemd-boot.enable = false;
|
||
boot.loader.limine = {
|
||
enable = true;
|
||
style.wallpapers = [ ];
|
||
additionalFiles = {
|
||
"efi/memtest86/memtest86.efi" = "${pkgs.memtest86-efi}/BOOTX64.efi";
|
||
"efi/shell.efi" = "${pkgs.edk2-uefi-shell}/shell.efi";
|
||
|
||
};
|
||
extraEntries = ''
|
||
/memtest86
|
||
protocol: efi
|
||
path: boot():/limine/efi/memtest86/memtest86.efi
|
||
/shell
|
||
protocol: efi
|
||
path: boot():/limine/efi/shell.efi
|
||
'';
|
||
|
||
};
|
||
boot.loader.efi.canTouchEfiVariables = false;
|
||
|
||
networking.hostName = "callisto"; # Define your hostname.
|
||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||
systemd.services.trackpad-fix = {
|
||
description = "Fixes the thinkpad touchpad being total shit";
|
||
serviceConfig = {
|
||
Type = "simple";
|
||
ExecStart = "${pkgs.tcl-8_6}/bin/tclsh /home/maya/unshit.tcl";
|
||
ExecStop = "pkill tclsh";
|
||
Restart = "on-failure";
|
||
};
|
||
wantedBy = ["default.target"];
|
||
|
||
|
||
};
|
||
systemd.services.fuckyou = {
|
||
description = "h";
|
||
after = ["suspend.target"];
|
||
wantedBy = ["suspend.target"];
|
||
serviceConfig = {
|
||
Type = "simple";
|
||
ExecStart = "systemctl --no-block restart trackpad-fix.service";
|
||
};
|
||
};
|
||
|
||
/* xdg.portal = {
|
||
enable = true;
|
||
}; */
|
||
|
||
# Configure network proxy if necessary
|
||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||
|
||
# Enable networking
|
||
networking.networkmanager.enable = true;
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Australia/Perth";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_AU.UTF-8";
|
||
|
||
i18n.extraLocaleSettings = {
|
||
LC_ADDRESS = "en_AU.UTF-8";
|
||
LC_IDENTIFICATION = "en_AU.UTF-8";
|
||
LC_MEASUREMENT = "en_AU.UTF-8";
|
||
LC_MONETARY = "en_AU.UTF-8";
|
||
LC_NAME = "en_AU.UTF-8";
|
||
LC_NUMERIC = "en_AU.UTF-8";
|
||
LC_PAPER = "en_AU.UTF-8";
|
||
LC_TELEPHONE = "en_AU.UTF-8";
|
||
LC_TIME = "en_AU.UTF-8";
|
||
};
|
||
|
||
# Enable the X11 windowing system.
|
||
services.xserver.enable = true;
|
||
|
||
# Enable the GNOME Desktop Environment.
|
||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||
# Configure keymap in X11
|
||
services.xserver = {
|
||
xkb.layout = "au";
|
||
xkb.variant = "";
|
||
};
|
||
|
||
# Enable CUPS to print documents.
|
||
services.printing.enable = true;
|
||
|
||
# Enable sound with pipewire.
|
||
hardware.pulseaudio.enable = false;
|
||
security.rtkit.enable = true;
|
||
services.pipewire = {
|
||
enable = true;
|
||
alsa.enable = true;
|
||
alsa.support32Bit = true;
|
||
pulse.enable = true;
|
||
# If you want to use JACK applications, uncomment this
|
||
#jack.enable = true;
|
||
|
||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||
# no need to redefine it in your config for now)
|
||
#media-session.enable = true;
|
||
};
|
||
|
||
# Enable touchpad support (enabled default in most desktopManager).
|
||
# services.xserver.libinput.enable = true;
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.maya = {
|
||
isNormalUser = true;
|
||
description = "Maya";
|
||
extraGroups = [ "networkmanager" "wheel" "libvirtd" "input" "uinput" "dialout" ];
|
||
packages = with pkgs; [
|
||
# thunderbird
|
||
git
|
||
tree
|
||
];
|
||
};
|
||
|
||
# Install firefox.
|
||
programs.firefox.enable = true;
|
||
|
||
# Allow unfree packages
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
# List packages installed in system profile. To search, run:
|
||
# $ nix search wget
|
||
environment.systemPackages = with pkgs; [
|
||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||
lutris
|
||
playerctl
|
||
undervolt
|
||
s-tui
|
||
stress
|
||
xfsprogs
|
||
protonvpn-gui
|
||
memtest86-efi
|
||
edk2-uefi-shell
|
||
xwayland-satellite
|
||
# wget
|
||
];
|
||
|
||
# Some programs need SUID wrappers, can be configured further or are
|
||
# started in user sessions.
|
||
# programs.mtr.enable = true;
|
||
programs.gnupg.agent = {
|
||
enable = true;
|
||
enableSSHSupport = true;
|
||
};
|
||
|
||
# List services that you want to enable:
|
||
|
||
# Enable the OpenSSH daemon.
|
||
# services.openssh.enable = true;
|
||
|
||
# Open ports in the firewall.
|
||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||
# Or disable the firewall altogether.
|
||
# networking.firewall.enable = false;
|
||
|
||
# This value determines the NixOS release from which the default
|
||
# settings for stateful data, like file locations and database versions
|
||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||
# this value at the release version of the first install of this system.
|
||
# Before changing this value read the documentation for this option
|
||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||
system.stateVersion = "24.05"; # Did you read the comment?
|
||
|
||
}
|