This commit is contained in:
John Lancaster
2024-09-13 23:46:51 +00:00
parent 0f8c612473
commit 7fbeb2513f

View File

@@ -1,6 +1,7 @@
{ pkgs, modulesPath, ... }:
let
stateVersion = "24.05";
unstable = import <nixos-unstable> {};
in
{
imports = [
@@ -13,13 +14,13 @@ in
(pkgs.writeShellScriptBin "nrbs" ''
sudo nixos-rebuild switch
'')
(pkgs.writeShellScriptBin "nrbsu" ''
sudo nix-channel --update && sudo nixos-rebuild switch
'')
bash
# wget
git
eza
# python312
# uv
appdaemon
# appdaemon
];
virtualisation.docker.enable = true;
@@ -45,11 +46,11 @@ in
home-manager = {
useGlobalPkgs = true;
users.appdaemon = { pkgs, ... }: {
home.packages = [ pkgs.uv ];
home.stateVersion = stateVersion;
programs.ssh = {
enable = true;
};
programs.ssh.enable = true;
home.packages = [
unstable.uv
];
};
};
system.stateVersion = stateVersion;