mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 14:36:34 +01: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
|
@ -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
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…
Reference in a new issue