Add stuff thats in progress of getting upstreamed

This commit is contained in:
Johannes Jöns 2024-01-11 00:29:55 +01:00
parent dff0d40777
commit 55223e5c38
5 changed files with 28 additions and 0 deletions

View file

@ -21,6 +21,7 @@
./ssh
./steam
./users
../upstream
self.inputs.home-manager.nixosModules.home-manager
self.inputs.kde2nix.nixosModules.plasma6
self.inputs.nixos-generators.nixosModules.all-formats

7
upstream/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ self, ... }:
{
imports = [
./modules
];
}

View file

@ -0,0 +1,7 @@
{ self, ... }:
{
imports = [
./sshfs
];
}

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
config = lib.mkIf (lib.any (fs: fs == "sshfs" || fs == "fuse.sshfs") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.sshfs ];
};
}

View file

@ -0,0 +1,6 @@
{ self, ... }:
{
imports = [
];
}