Compare commits
3 Commits
5a35673b2d
...
2e00cc5a32
Author | SHA1 | Date | |
---|---|---|---|
2e00cc5a32 | |||
8d588e6b89 | |||
4c18305aa8 |
@ -98,33 +98,33 @@
|
|||||||
wget
|
wget
|
||||||
vim
|
vim
|
||||||
emacs29-pgtk
|
emacs29-pgtk
|
||||||
nfs-utils
|
|
||||||
cmake
|
|
||||||
fontconfig
|
|
||||||
harfbuzz
|
|
||||||
freetype
|
|
||||||
expat
|
|
||||||
glib
|
|
||||||
atk
|
|
||||||
gtk3
|
|
||||||
pango
|
|
||||||
cairo
|
|
||||||
gdk-pixbuf
|
|
||||||
zlib
|
|
||||||
xorg.libxcb
|
|
||||||
libxkbcommon
|
|
||||||
libGL
|
|
||||||
wayland
|
|
||||||
vulkan-headers
|
|
||||||
vulkan-loader
|
|
||||||
cargo
|
|
||||||
gcc
|
|
||||||
gnumake
|
|
||||||
pkg-config
|
|
||||||
fontconfig
|
|
||||||
glibc
|
|
||||||
gobject-introspection
|
|
||||||
sg3_utils
|
sg3_utils
|
||||||
|
nfs-utils
|
||||||
|
fontconfig
|
||||||
|
# cmake
|
||||||
|
# harfbuzz
|
||||||
|
# freetype
|
||||||
|
# expat
|
||||||
|
# glib
|
||||||
|
# atk
|
||||||
|
# gtk3
|
||||||
|
# pango
|
||||||
|
# cairo
|
||||||
|
# gdk-pixbuf
|
||||||
|
# zlib
|
||||||
|
# xorg.libxcb
|
||||||
|
# libxkbcommon
|
||||||
|
# libGL
|
||||||
|
# wayland
|
||||||
|
# vulkan-headers
|
||||||
|
# vulkan-loader
|
||||||
|
# cargo
|
||||||
|
# gcc
|
||||||
|
# gnumake
|
||||||
|
# pkg-config
|
||||||
|
# fontconfig
|
||||||
|
# glibc
|
||||||
|
# gobject-introspection
|
||||||
];
|
];
|
||||||
services.udev.extraRules = ''
|
services.udev.extraRules = ''
|
||||||
ACTION=="add", ATTRS{idProduct}=="1500", ATTRS{idVendor}=="05ac", DRIVERS=="usb", RUN+="${pkgs.sg3_utils}/bin/sg_raw /dev/$kernel EA 00 00 00 00 00 01"
|
ACTION=="add", ATTRS{idProduct}=="1500", ATTRS{idVendor}=="05ac", DRIVERS=="usb", RUN+="${pkgs.sg3_utils}/bin/sg_raw /dev/$kernel EA 00 00 00 00 00 01"
|
||||||
|
2
home.nix
2
home.nix
@ -25,7 +25,7 @@ with lib.hm.gvariant;
|
|||||||
pkgs.eza
|
pkgs.eza
|
||||||
pkgs.python3
|
pkgs.python3
|
||||||
pkgs.unzip
|
pkgs.unzip
|
||||||
|
pkgs.devenv
|
||||||
# pkgs.gnupg
|
# pkgs.gnupg
|
||||||
# pkgs.python3
|
# pkgs.python3
|
||||||
# (pkgs.python3.withPackages(
|
# (pkgs.python3.withPackages(
|
||||||
|
@ -2,10 +2,12 @@
|
|||||||
{
|
{
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
nix.settings.cores = 2;
|
||||||
|
nix.settings.max-jobs = 4;
|
||||||
nix.buildMachines = [{
|
nix.buildMachines = [{
|
||||||
hostName = "unicron";
|
hostName = "unicron";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
protocol = "ssh-ng";
|
protocol = "ssh";
|
||||||
maxJobs = 0;
|
maxJobs = 0;
|
||||||
}];
|
}];
|
||||||
nix.distributedBuilds = true;
|
nix.distributedBuilds = true;
|
||||||
|
27
modules/xfstump.nix
Normal file
27
modules/xfstump.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
|
||||||
|
{
|
||||||
|
# Enable the X11 windowing system.
|
||||||
|
services.xserver = {
|
||||||
|
enable = true;
|
||||||
|
xkb = {
|
||||||
|
layout = "us";
|
||||||
|
variant = "";
|
||||||
|
options = "caps_lock:esc";
|
||||||
|
};
|
||||||
|
desktopManager = {
|
||||||
|
xterm.enable = false;
|
||||||
|
xfce = {
|
||||||
|
enable = true;
|
||||||
|
# noDesktop = true;
|
||||||
|
enableXfwm = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
displayManager.gdm.enable = true;
|
||||||
|
displayManager.defaultSession = "xfce+stumpwm";
|
||||||
|
windowManager = {
|
||||||
|
stumpwm.enable = true;
|
||||||
|
# xmonad.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user