This commit is contained in:
Alex Davies 2024-09-20 08:20:09 -03:00
commit 92e5a1671d
13 changed files with 154 additions and 35 deletions

View File

@ -85,7 +85,7 @@
# NixOS configuration entrypoint # NixOS configuration entrypoint
nixosConfigurations = { nixosConfigurations = {
#Personal laptop, thinkpad t490 #Traverse's laptop, thinkpad t490
athame = nixpkgs.lib.nixosSystem { athame = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs outputs; inherit inputs outputs;
@ -140,11 +140,25 @@
./nixos/zerotier.nix ./nixos/zerotier.nix
]; ];
}; };
gwen = nixpkgs.lib.nixosSystem { selaphiel = nixpkgs.lib.nixosSystem {
#Ingrid thinkpad t480
specialArgs = { specialArgs = {
inherit inputs outputs; inherit inputs outputs;
hostname = "gwen"; hostname = "selaphiel";
mainUser = "gwen"; mainUser = "ingrid";
};
modules = [
./nixos/configuration.nix
./nixos/kde-desktop.nix
./nixos/family.nix
./nixos/zerotier.nix
./nixos/gaming.nix
];
};
chamuel = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs outputs;
hostname = "chamuel";
}; };
modules = [ modules = [
./nixos/configuration.nix ./nixos/configuration.nix

View File

@ -311,6 +311,7 @@
pkgs.copier pkgs.copier
pkgs.pv pkgs.pv
#pkgs.poetry #pkgs.poetry
pkgs.lazydocker
pkgs.nmap pkgs.nmap
pkgs.dig pkgs.dig
pkgs.tree pkgs.tree

View File

@ -14,7 +14,7 @@ Jeremiel
#Metatron #Metatron
Sandalphon Sandalphon
Sariel Sariel
Selaphiel #Selaphiel
Barachiel Barachiel
Zaphkiel Zaphkiel
Gadreel Gadreel

View File

@ -186,6 +186,14 @@
programs.nix-ld.libraries = with pkgs; [ programs.nix-ld.libraries = with pkgs; [
]; ];
#Create ldpadmin group for printer access
services.printing.extraFilesConf = ''
SystemGroup root wheel lpadmin
'';
users.groups = {
lpadmin = { };
};
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "23.05"; system.stateVersion = "23.05";
} }

View File

@ -12,15 +12,15 @@ in
users.users = { users.users = {
gwen = { gwen = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "networkManager" ]; extraGroups = [ "networkManager" "lpadmin" ];
}; };
ingrid = { ingrid = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "networkManager" ]; extraGroups = [ "networkManager" "lpadmin" ];
}; };
bill = { bill = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "networkManager" ]; extraGroups = [ "networkManager" "lpadmin" ];
}; };
logic11 = { logic11 = {
isNormalUser = true; isNormalUser = true;

View File

@ -8,6 +8,7 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
pkgs.discord
]; ];
} }

View File

@ -0,0 +1,38 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "firewire_ohci" "usbhid" "usb_storage" "sd_mod" "sr_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/946dac58-4ad2-463d-b0a4-46064a3e9e2f";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/6D60-03A9";
fsType = "vfat";
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s25.useDHCP = lib.mkDefault true;
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@ -14,17 +14,17 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/50ac51e9-5ac3-4f11-ae92-f3d43b5b602e"; { device = "/dev/disk/by-uuid/df5a8047-3bbb-4a48-9b9e-5ffa8b292339";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/F953-8DA5"; { device = "/dev/disk/by-uuid/F953-8DA5";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/067ac10e-d118-4e8c-bbe8-01ac99065024"; } [ { device = "/dev/disk/by-uuid/c66d85ae-e3b7-4aee-a457-d13cfe87ec84"; }
]; ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View File

@ -0,0 +1,41 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/1c4d73a3-ce64-42c8-beda-b27e085a80c1";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/B16C-FE36";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/24533029-c0f8-44d7-b3f5-12a5e5327ed1"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./misc/dslr-webcam.nix ./misc/dslr-webcam.nix
./misc/wifi-multiplex.nix
]; ];
# Enable the KDE Desktop Environment. # Enable the KDE Desktop Environment.
services.xserver.enable = true; services.xserver.enable = true;
@ -39,6 +40,15 @@
services.printing.enable = true; services.printing.enable = true;
programs.kdeconnect.enable = true; programs.kdeconnect.enable = true;
#Enable flatpak repo by default for all users
systemd.services.flatpak-repo = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.flatpak ];
script = ''
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
'';
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
pkgs.krfb pkgs.krfb
pkgs.krdc pkgs.krdc
@ -55,6 +65,7 @@
pkgs.iw pkgs.iw
pkgs.vlc pkgs.vlc
pkgs.signal-desktop pkgs.signal-desktop
pkgs.anki
]; ];
programs.dconf.enable = true; programs.dconf.enable = true;

View File

@ -1,10 +1,8 @@
{ pkgs, lib, ... }: { pkgs, lib, ... }:
let let
wifiUdevRule = '' wifiUdevRule = ''
ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", ENV{ID_NET_NAME_MAC}=="", RUN+="/bin/sh -c '${pkgs.iw}/bin/iw dev %k interface add %k_ap type station'" ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", KERNEL!="virt_", RUN+="${pkgs.iw}/bin/iw dev %k interface add virt_%k_ap type station"
''; '';
in in
{ {

View File

@ -5,7 +5,7 @@ let
in { in {
networking.firewall.trustedInterfaces = privateZeroTierInterfaces; # TRUST VPN ONLY networking.firewall.trustedInterfaces = privateZeroTierInterfaces; # TRUST VPN ONLY
services.avahi = { services.avahi = {
enable = true; enable = true;
#allowInterfaces = privateZeroTierInterfaces; # ONLY BROADCAST ON VPN #allowInterfaces = privateZeroTierInterfaces; # ONLY BROADCAST ON VPN
@ -18,7 +18,7 @@ in {
publish.workstation = true; # ADDED TO DESKTOP MACHINES publish.workstation = true; # ADDED TO DESKTOP MACHINES
cacheEntriesMax = 512; cacheEntriesMax = 512;
}; };
systemd.services.createDevicemap = { systemd.services.createDevicemap = {
description = "Create ZeroTier devicemap file"; description = "Create ZeroTier devicemap file";
before = [ "zerotierone.service" ]; # Ensure ZeroTier service has started before = [ "zerotierone.service" ]; # Ensure ZeroTier service has started

View File

@ -18,32 +18,39 @@ let
multiPkgs = pkgs: with pkgs; [ qt5.qtbase libGL libz ]; multiPkgs = pkgs: with pkgs; [ qt5.qtbase libGL libz ];
}; };
# Create a desktop entry for Creality Print
desktopItem = pkgs.makeDesktopItem {
name = "creality-print";
exec = "${creality-print}/bin/creality-print";
icon = "creality-print";
desktopName = "Creality Print";
genericName = "3D Printer Software";
categories = [ "Graphics" ];
};
in in
# Define the package # Define the package
pkgs.stdenv.mkDerivation { pkgs.stdenv.mkDerivation {
name = "creality-print"; name = "creality-print";
buildInputs = [ creality-print ]; buildInputs = [ creality-print pkgs.bash ];
nativeBuildInputs = [ pkgs.makeWrapper ]; nativeBuildInputs = [ pkgs.makeWrapper pkgs.icoutils pkgs.unpacker ];
# No sources to unpack # No sources to unpack
unpackPhase = "true"; unpackPhase = "true";
# Installation phase # Extraction phase to get the icon from the AppImage
installPhase = '' installPhase = ''
mkdir -p $out/bin $out/share/applications mkdir -p $out/bin $out/share/applications $out/share/icons/hicolor/256x256/apps
# Extract the AppImage content
appimage-extract ${creality-print}/bin/creality-print
# Find and copy the icon (typically the largest icon available)
cp ./squashfs-root/*.png $out/share/icons/hicolor/256x256/apps/creality-print.png || true
# Copy the binary files
cp ${creality-print}/bin/* $out/bin cp ${creality-print}/bin/* $out/bin
ln -s ${desktopItem}/share/applications/* $out/share/applications/
# Create the desktop entry with the extracted icon
cat > $out/share/applications/creality-print.desktop <<EOF
[Desktop Entry]
Name=Creality Print
Exec=$out/bin/creality-print
Icon=creality-print
Type=Application
Categories=Graphics;
EOF
''; '';
# Package metadata # Package metadata