formatting

This commit is contained in:
Bit Borealis 2023-03-29 06:31:13 +00:00
parent 9ecc8a3f6e
commit f351830304
Signed by: theotheroracle
GPG Key ID: 2D816A2DCA6E5649
2 changed files with 6 additions and 3 deletions

View File

@ -1,13 +1,16 @@
# welcome to saturnOS config, run nixos-help if you need it .
{ config, pkgs, lib, ... }:
let
unstableTarball = builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
homeManagerTarball = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
unstableTarball = builtins.fetchTarball
"https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
homeManagerTarball = builtins.fetchTarball
"https://github.com/nix-community/home-manager/archive/master.tar.gz";
homeManager = import "${homeManagerTarball}/nixos";
deviceConf = import "/home/${sysConf.user}/.saturn/hosts/${sysConf.host}/";
unstable = import unstableTarball config.nixpkgs.config;
sysConf = import ./saturn/system.nix;
in {
testingthing = "./hosts/${config.saturn.hostname}"
imports = [
homeManager
deviceConf

View File

@ -21,5 +21,5 @@
};
};
config.networking.hostName = config.saturn.hostname;
config.environment.machineInfo.prettyHostname = config.saturn.prettyHostname;
config.environment.machineInfo.prettyHostname = config.saturn.prettyHostname;
}