Updated nixpkgs

This commit is contained in:
Samy Avrillon 2025-08-14 23:41:38 +02:00
parent 7ac5d06c18
commit 0ee21f2e5d
4 changed files with 27 additions and 9 deletions

18
flake.lock generated
View File

@ -25,11 +25,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1746171682, "lastModified": 1747688870,
"narHash": "sha256-EyXUNSa+H+YvGVuQJP1nZskXAowxKYp79RNUsNdQTj4=", "narHash": "sha256-ypL9WAZfmJr5V70jEVzqGjjQzF0uCkz+AFQF7n9NmNc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "50eee705bbdbac942074a8c120e8194185633675", "rev": "d5f1f641b289553927b3801580598d200a501863",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -47,11 +47,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1745546092, "lastModified": 1755137362,
"narHash": "sha256-Q4vPpbuoJOBXRdGW7ZRqlFq1x4FfWKmfyxSVRQZFNCM=", "narHash": "sha256-3e/S+Q9InEZ+W1YxjrfjkuVz49IsF2vJZx7Id22RCkY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-vscode-extensions", "repo": "nix-vscode-extensions",
"rev": "baeaec5a10fb8626bea64ebabdfaecdf64832bf3", "rev": "547b299dd5b8ddccf948ff6728d7ec547eee4e02",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -62,11 +62,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1745487689, "lastModified": 1751274312,
"narHash": "sha256-FQoi3R0NjQeBAsEOo49b5tbDPcJSMWc3QhhaIi9eddw=", "narHash": "sha256-/bVBlRpECLVzjV19t5KMdMFWSwKLtb5RyXdjz3LJT+g=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5630cf13cceac06cefe9fc607e8dfa8fb342dde3", "rev": "50ab793786d9de88ee30ec4e4c24fb4236fc2674",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -10,6 +10,7 @@
{ {
imports = [ imports = [
./locale.nix ./locale.nix
./ssh.nix
]; ];
nix.settings.experimental-features = [ nix.settings.experimental-features = [

12
profiles/basic/ssh.nix Normal file
View File

@ -0,0 +1,12 @@
{config, lib, pkgs, ...}: {
programs.ssh = {
extraConfig = "
Host git-ssh.hadoly.fr
Hostname git-ssh.hadoly.fr
IdentityFile /run/secrets/ssh/mysaa@git.hadoly.fr
Port 6900
";
};
}

View File

@ -5,6 +5,11 @@
... ...
}: }:
{ {
environment.systemPackages = with pkgs; [
discord
];
home-manager.users.mysaa.home.packages = with pkgs; [ home-manager.users.mysaa.home.packages = with pkgs; [
firefox firefox
vlc vlc