mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-12-23 02:36:05 +01:00
add yodaYoga
This commit is contained in:
parent
cccabdb91b
commit
06b4ecb70e
50
hosts/yodaYoga/configuration.nix
Normal file
50
hosts/yodaYoga/configuration.nix
Normal file
@ -0,0 +1,50 @@
|
||||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running `nixos-help`).
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
let
|
||||
# Import Home Manager with niv.
|
||||
home-manager = (import ../../nix/sources.nix).home-manager;
|
||||
in
|
||||
{
|
||||
# Paths to other modules.
|
||||
# Compose this module out of smaller ones.
|
||||
# https://nixos.wiki/wiki/NixOS_modules
|
||||
imports =
|
||||
[
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
# Home Manager.
|
||||
(import "${home-manager}/nixos")
|
||||
../../modules/home-manager.nix
|
||||
# NUR.
|
||||
../../modules/nur.nix
|
||||
# Device specific.
|
||||
../../modules/yodaYoga.nix
|
||||
|
||||
../../modules/base.nix
|
||||
#../../modules/base-gnome.nix
|
||||
#../../modules/programs.nix
|
||||
#../../modules/autostart.nix
|
||||
#../../modules/wallpaper.nix
|
||||
#../../modules/fwupd-gnome.nix
|
||||
#../../modules/print-and-scan.nix
|
||||
#../../modules/fde-ssh-unlock.nix
|
||||
#../../modules/nextcloud-integration.nix
|
||||
|
||||
#../../modules/gnome-config.nix
|
||||
#../../modules/gnome-extensions.nix
|
||||
#../../modules/gnome-fractional-scaling.nix
|
||||
#../../modules/git.nix
|
||||
../../modules/zsh.nix
|
||||
#../../modules/nitrokey-gpg-smartcard.nix
|
||||
../../modules/ssh.nix
|
||||
#../../modules/firefox.nix
|
||||
#../../modules/thunderbird.nix
|
||||
#../../modules/digikam.nix
|
||||
#../../modules/android.nix
|
||||
];
|
||||
|
||||
networking.hostName = "yodaYoga";
|
||||
}
|
3
hosts/yodaYoga/hardware-configuration.nix
Normal file
3
hosts/yodaYoga/hardware-configuration.nix
Normal file
@ -0,0 +1,3 @@
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
{
|
||||
}
|
10
modules/yodaYoga.nix
Normal file
10
modules/yodaYoga.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
||||
home.file."readonly-git/BikeTripPlanner".source = (builtins.fetchGit {
|
||||
url = "https://github.com/langbein-daniel/BikeTripPlanner";
|
||||
#leaveDotGit = true;
|
||||
});
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user