mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 13:29:22 +02:00
Add stuff thats in progress of getting upstreamed
This commit is contained in:
parent
dff0d40777
commit
55223e5c38
5 changed files with 28 additions and 0 deletions
7
upstream/default.nix
Normal file
7
upstream/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ self, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./modules
|
||||
];
|
||||
}
|
7
upstream/modules/default.nix
Normal file
7
upstream/modules/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ self, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./sshfs
|
||||
];
|
||||
}
|
7
upstream/modules/sshfs/default.nix
Normal file
7
upstream/modules/sshfs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
6
upstream/pkgs/default.nix
Normal file
6
upstream/pkgs/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ self, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue