Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8f8107989 | |||
|
|
7feb101a90 | ||
|
|
6e013d37dd | ||
|
|
b6fe23623d | ||
|
|
b2fd46917d | ||
|
|
d52b1a3d9c | ||
|
|
04cfe12f34 |
@@ -19,6 +19,6 @@ mkIf (flags.conception-assistee && flags.graphical) {
|
||||
## Électricité & Électronique
|
||||
fritzing # schéma de câblages "jolis"
|
||||
kicad # ensemble d'outils de conception électronique
|
||||
qucs # simulateur de circuits électroniques
|
||||
qucs-s # simulateur de circuits électroniques
|
||||
];
|
||||
}
|
||||
|
||||
@@ -30,5 +30,8 @@ environment.systemPackages = with pkgs; [
|
||||
transmission-gtk
|
||||
transmission-qt
|
||||
transgui
|
||||
|
||||
# Téléchargement de vidéos
|
||||
media-downloader
|
||||
];
|
||||
}
|
||||
|
||||
@@ -26,8 +26,5 @@ mkIf (flags.developpement && flags.graphical) {
|
||||
## Visualisation & outils de diff
|
||||
#gource # visualisation en mouvement de l'historique git
|
||||
meld # outil de comparaison graphique
|
||||
|
||||
# Editeur texte
|
||||
atom
|
||||
];
|
||||
}
|
||||
|
||||
@@ -39,7 +39,6 @@ mkIf true {
|
||||
## Montage de filesystem
|
||||
curlftpfs # ftp
|
||||
exfat # Pour monter les FAT avec Fuse
|
||||
hubicfuse # montage hubic
|
||||
ntfs3g # ntfs
|
||||
samba # partages windows
|
||||
squashfsTools # squashfs
|
||||
|
||||
@@ -32,9 +32,15 @@ mkIf true {
|
||||
wget # client HTTP console
|
||||
which # pour connaitre le chemin d'un exécutable
|
||||
helix # Éditeur post-moderne
|
||||
nil # LSP pour Nix
|
||||
# outils pour l'édition Nix
|
||||
nixd # LSP pour Nix
|
||||
nixfmt
|
||||
nixfmt-tree
|
||||
|
||||
nodePackages.bash-language-server # LSP pour Bash
|
||||
delta # visionneur de différences
|
||||
kitty.terminfo
|
||||
rio.terminfo
|
||||
];
|
||||
programs = {
|
||||
gnupg.agent.enable = true;
|
||||
|
||||
@@ -9,11 +9,10 @@ in
|
||||
|
||||
{
|
||||
# The NixOS release to be compatible with for stateful data such as databases.
|
||||
#system.stateVersion = "19.09";
|
||||
system.stateVersion = "19.09";
|
||||
|
||||
# copies the NixOS configuration file (usually /etc/nixos/configuration.nix) and links it from the resulting system (getting to /run/current-system/configuration.nix)
|
||||
# https://github.com/NixOS/nixpkgs/issues/97252
|
||||
#system.copySystemConfiguration = true;
|
||||
system.copySystemConfiguration = true;
|
||||
|
||||
# On autorise les paquets non-libres
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
@@ -13,7 +13,6 @@ in
|
||||
|
||||
system.autoUpgrade.enable = flags.auto-upgrade;
|
||||
nix = {
|
||||
package = pkgs.nixUnstable;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
||||
27
flake.lock
generated
27
flake.lock
generated
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1659981942,
|
||||
"narHash": "sha256-uCFiP/B/NXOWzhN6TKfMbSxtVMk1bVnCrnJRjCF6RmU=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "39d7f929fbcb1446ad7aa7441b04fb30625a4190",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
description = "Module NixOS de base Grudunet";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
|
||||
outputs = { self, nixpkgs, ... }: {
|
||||
nixosModules.default = import ./base.nix ;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user