mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
WIP
This commit is contained in:
parent
498ff3fa17
commit
16ea9f6b1d
4 changed files with 21 additions and 15 deletions
|
@ -13,7 +13,7 @@
|
|||
nixos-vm = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./modules/configuration.nix
|
||||
# ./modules/configuration.nix
|
||||
./modules/overlays.nix
|
||||
./modules/environment.nix
|
||||
];
|
||||
|
@ -22,7 +22,9 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/jeran/configuration.nix
|
||||
./hosts/jeran/motd.nix
|
||||
./modules/environment.nix
|
||||
|
||||
];
|
||||
specialArgs = { inherit inputs; };
|
||||
};
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
isNormalUser = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
services.resolved.enable = true;
|
||||
system.stateVersion = "22.11";
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
services.cron = {
|
||||
services.cron = {
|
||||
enable = true;
|
||||
systemCronJobs = [
|
||||
# update repos
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
[1;33m
|
||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⣠⣾⠆⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⣠⡾⠋⠁⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠺⣯⡀⠀⠸⣷⣄⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠈⠻⣦⡀⠈⠙⢷⣄⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠈⠻⠃⠀⣠⣿⠇⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠀⣠⣾⠟⠁⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠘⠋⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀[0m [1mjeran[0m
|
||||
|
16
hosts/jeran/motd.nix
Normal file
16
hosts/jeran/motd.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ ... }: {
|
||||
users.motd = ''
|
||||
[1;33m
|
||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⣠⣾⠆⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⣠⡾⠋⠁⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠺⣯⡀⠀⠸⣷⣄⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠈⠻⣦⡀⠈⠙⢷⣄⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠈⠻⠃⠀⣠⣿⠇⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠀⣠⣾⠟⠁⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠘⠋⠀⠀⠀⠀⠀⠀
|
||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀[0m [1mjeran[0m
|
||||
'';
|
||||
}
|
||||
|
Loading…
Reference in a new issue