Compare commits

...

3 Commits

5 changed files with 14 additions and 12 deletions

View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1729027341, "lastModified": 1729551526,
"narHash": "sha256-IqWD7bA9iJVifvJlB4vs2KUXVhN+d9lECWdNB4jJ0tE=", "narHash": "sha256-7LAGY32Xl14OVQp3y6M43/0AtHYYvV6pdyBcp3eoz0s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2a4fd1cfd8ed5648583dadef86966a8231024221", "rev": "5ec753a1fc4454df9285d8b3ec0809234defb975",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1728888510, "lastModified": 1729665710,
"narHash": "sha256-nsNdSldaAyu6PE3YUA+YQLqUDJh+gRbBooMMekZJwvI=", "narHash": "sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a3c0b3b21515f74fd2665903d4ce6bc4dc81c77c", "rev": "2768c7d042a37de65bb1b5b3268fc987e534c49d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -18,9 +18,10 @@
]; ];
imports = [ imports = [
./picocom.nix
./podman.nix ./podman.nix
./shell/screen.nix
./horsch/ssh.nix ./horsch/ssh.nix
./horsch/zsh.nix ./horsch/zsh.nix
./horsch/github.nix ./horsch/github.nix

View File

@ -1,5 +0,0 @@
{ pkgs, ... }:
{
home.packages = [ pkgs.picocom ];
}

View File

@ -5,6 +5,7 @@
dust dust
htop htop
jq jq
nh
unzip unzip
xclip xclip
]; ];

5
shell/screen.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
home.packages = [ pkgs.screen ];
}