mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
finally on flake parts
just need to remove fup now
This commit is contained in:
parent
3b4057b366
commit
fdafb67215
20 changed files with 206 additions and 123 deletions
|
|
@ -2,10 +2,12 @@
|
|||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
self,
|
||||
...
|
||||
}: let
|
||||
inherit (inputs.self.nixosModules) keys;
|
||||
#inherit (self.nixosModules) keys;
|
||||
in {
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
c.services.mesh = {
|
||||
enable = true;
|
||||
exitNode = false;
|
||||
|
|
@ -13,7 +15,7 @@ in {
|
|||
};
|
||||
c.services.remote-deploy = {
|
||||
enable = false;
|
||||
keys = keys.c;
|
||||
keys = config.keys.c;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/London";
|
||||
|
|
@ -22,7 +24,7 @@ in {
|
|||
users.users.c = {
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "networkmanager" "libvirtd" "dialout"];
|
||||
openssh.authorizedKeys.keys = keys.c;
|
||||
openssh.authorizedKeys.keys = config.keys.c;
|
||||
shell = pkgs.fish;
|
||||
packages = with pkgs; [];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{...}: {
|
||||
virtualisation = {
|
||||
libvirtd.enable = true;
|
||||
podman = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{inputs}: {
|
||||
modules = [
|
||||
{inputs, ...}: {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./configuration.nix
|
||||
./containers.nix
|
||||
|
|
@ -9,7 +9,4 @@
|
|||
./home.nix
|
||||
./styling.nix
|
||||
];
|
||||
extraArgs = {};
|
||||
specialArgs = {};
|
||||
system = "x86_64-linux";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{...}: {
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue