Téléverser les fichiers vers "/"

This commit is contained in:
2026-08-18 15:46:40 +02:00
parent 7fc9368fcc
commit c8ec1005a4
2 changed files with 40 additions and 66 deletions
+29
View File
@@ -0,0 +1,29 @@
V1 UI uniquement - aucune modification de mot de passe / PIN
============================================================
Arborescence a ajouter au depot :
modules/first-login-ui.nix
first-login-ui/CMakeLists.txt
first-login-ui/org.raspot.nixosfirstlogin.desktop
first-login-ui/src/CMakeLists.txt
first-login-ui/src/main.cpp
first-login-ui/src/Main.qml
Le configuration.nix fourni est un exemple complet base sur le depot actuel,
avec /etc/nixos/hardware-configuration.nix et l'import supplementaire :
./modules/first-login-ui.nix
Validation prudente :
sudo nixos-rebuild build -I nixos-config=/home/localadm/nixos-workstations/configuration.nix
sudo nixos-rebuild dry-activate -I nixos-config=/home/localadm/nixos-workstations/configuration.nix
sudo nixos-rebuild test -I nixos-config=/home/localadm/nixos-workstations/configuration.nix
Puis lancer MANUELLEMENT :
nixos-first-login-ui
Aucun autostart n'est installe par ce nouveau module.
Le module historique modules/yubikey-first-login.nix n'est pas modifie.
+11 -66
View File
@@ -1,37 +1,24 @@
# 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, ... }: { config, pkgs, ... }:
{ {
imports = imports = [
[ # Include the results of the hardware scan. /etc/nixos/hardware-configuration.nix
/etc/nixos/hardware-configuration.nix ./modules/software.nix
./modules/software.nix ./modules/users.nix
./modules/users.nix ./modules/security.nix
./modules/security.nix ./modules/yubikey-first-login.nix
./modules/yubikey-first-login.nix ./modules/first-login-ui.nix
]; ];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "bureautix-01"; # Define your hostname. networking.hostName = "bureautix-01";
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# 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; networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Paris"; time.timeZone = "Europe/Paris";
# Select internationalisation properties.
i18n.defaultLocale = "fr_FR.UTF-8"; i18n.defaultLocale = "fr_FR.UTF-8";
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {
@@ -46,73 +33,31 @@
LC_TIME = "fr_FR.UTF-8"; LC_TIME = "fr_FR.UTF-8";
}; };
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = true; services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true; services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
# Configure keymap in X11
services.xserver.xkb = { services.xserver.xkb = {
layout = "fr"; layout = "fr";
variant = ""; variant = "";
}; };
# Configure console keymap
console.keyMap = "fr"; console.keyMap = "fr";
# Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
# Enable sound with pipewire.
services.pulseaudio.enable = false; services.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = 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;
# Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Some programs need SUID wrappers, can be configured further or are system.stateVersion = "26.05";
# 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. Its 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 = "26.05"; # Did you read the comment?
} }