This commit is contained in:
2024-06-22 15:32:03 +08:00
parent 64a2492ddb
commit 91cb8926a3
3 changed files with 42 additions and 39 deletions
+4 -2
View File
@@ -6,7 +6,8 @@
{
imports =
[ # Include the results of the hardware scan.
[
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.sops-nix.nixosModules.sops
];
@@ -30,7 +31,7 @@
time.timeZone = "Asia/Shanghai";
nix.settings = {
trusted-users = ["origami"];
trusted-users = [ "origami" ];
substituters = [
"https://mirrors.ustc.edu.cn/nix-channels/store"
];
@@ -96,6 +97,7 @@
# with more details log output
nix-output-monitor
nixd
nixpkgs-fmt
# system call monitoring
strace # system call monitoring
+2 -1
View File
@@ -17,7 +17,8 @@
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
home-manager.nixosModules.home-manager {
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.origami = import ./home.nix;
+1 -1
View File
@@ -6,7 +6,7 @@
programs.home-manager.enable = true;
home.packages = with pkgs;[];
home.packages = with pkgs;[ ];
programs.vscode = {
enable = true;
};