Compare commits

..

No commits in common. "749d45df3c1e7afaf2ce6c6276cc1629daa7f597" and "5852b1cabd160c62e11ea48c4cf860602870f182" have entirely different histories.

11 changed files with 87 additions and 56 deletions

1
.envrc
View file

@ -1 +0,0 @@
use flake

2
.gitignore vendored
View file

@ -2,5 +2,3 @@ result
result-* result-*
.DS_Store .DS_Store
/.direnv

View file

@ -231,17 +231,17 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1725013374, "lastModified": 1724748588,
"narHash": "sha256-fbz8MUVDWHchQSA4uguP9YYDXnX4bEdlP7YvsMcXZu4=", "narHash": "sha256-NlpGA4+AIf1dKNq76ps90rxowlFXUsV9x7vK/mN37JM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c169763c3087b02a8308e2f8a9bba77c428dcca1", "rev": "a6292e34000dc93d43bccf78338770c1c5ec8a99",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c169763c3087b02a8308e2f8a9bba77c428dcca1",
"type": "github" "type": "github"
} }
}, },

View file

@ -7,8 +7,7 @@
# `nixpkgs-unstable` contains less(?) jobs, and usually updates faster. # `nixpkgs-unstable` contains less(?) jobs, and usually updates faster.
# #
# REFERENCE: https://discourse.nixos.org/t/differences-between-nix-channels/13998/5 # REFERENCE: https://discourse.nixos.org/t/differences-between-nix-channels/13998/5
nixpkgs.url = "github:NixOS/nixpkgs/c169763c3087b02a8308e2f8a9bba77c428dcca1"; # userborn nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
disko = { disko = {
url = "github:nix-community/disko"; url = "github:nix-community/disko";
@ -103,7 +102,7 @@
legacyPackages = import ./pkgs pkgs; legacyPackages = import ./pkgs pkgs;
### nix develop ### nix develop
devShells.default = pkgs.mkShellNoCC { devShells.default = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
colmena colmena
sops sops

View file

@ -1,6 +0,0 @@
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
colmena
deadnix deadnix
nh nh
nil nil

View file

@ -6,6 +6,14 @@
... ...
}: }:
{ {
imports = [
../i3status-rust
../kanshi
../mako
../swayidle
../swaylock
];
home.packages = with pkgs; [ home.packages = with pkgs; [
wl-clipboard wl-clipboard
pwvucontrol pwvucontrol

View file

@ -1,26 +1,41 @@
{ {
pkgs,
lib, lib,
config, config,
... ...
}: }:
{ {
services.swayidle = { imports = [
enable = true; ../swaylock
timeouts = [ ];
{
timeout = 60 * 10; services.swayidle =
command = "/run/current-system/sw/bin/systemctl suspend"; let
} lock = lib.getExe config.programs.swaylock.package;
]; brightness = lib.getExe pkgs.brightnessctl;
events = [ in
{ {
event = "lock"; enable = true;
command = lib.getExe config.programs.swaylock.package; timeouts = [
} {
{ timeout = 60 * 9;
event = "before-sleep"; command = "${brightness} -s set 20%";
command = "/run/current-system/systemd/bin/loginctl lock-session"; resumeCommand = "${brightness} -r";
} }
]; {
}; timeout = 60 * 10;
command = "systemctl suspend";
}
];
events = [
{
event = "lock";
command = lock;
}
{
event = "before-sleep";
command = lock;
}
];
};
} }

View file

@ -1,5 +1,4 @@
{ {
lib,
pkgs, pkgs,
... ...
}: }:
@ -7,26 +6,49 @@
home = { home = {
username = "guanranwang"; username = "guanranwang";
homeDirectory = "/home/guanranwang"; homeDirectory = "/home/guanranwang";
stateVersion = "24.05"; stateVersion = "23.05";
}; };
imports = [ imports =
./theme.nix [
./xdg-mime.nix ./theme.nix
] ++ lib.filter (x: lib.hasSuffix "default.nix" x) (lib.fileset.toList ./applications); ./xdg-mime.nix
]
++ map (n: ./applications/${n}) [
"atuin"
"bash"
"bat"
"eza"
"fcitx5"
"firefox"
"fish"
"foot"
"git"
"go"
"gpg"
"mpv"
"nautilus"
"neovim"
"nix"
"ssh"
"starship"
"sway"
"tealdeer"
"thunderbird"
"tmux"
"ydict"
];
programs = { programs.jq.enable = true;
jq.enable = true; programs.obs-studio.enable = true;
obs-studio.enable = true; programs.ripgrep.enable = true;
ripgrep.enable = true; programs.skim.enable = true;
skim.enable = true; programs.zoxide.enable = true;
zoxide.enable = true;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
dconf-editor
fastfetch fastfetch
fd fd
dconf-editor
file-roller file-roller
fractal fractal
gnome-calculator gnome-calculator
@ -34,4 +56,5 @@
loupe loupe
seahorse seahorse
]; ];
} }

View file

@ -21,13 +21,6 @@
time.timeZone = "Asia/Shanghai"; time.timeZone = "Asia/Shanghai";
system.stateVersion = "24.05"; system.stateVersion = "24.05";
# TODO: move to 'core' profile
system.etc.overlay.enable = true;
services.userborn.enable = true;
# TODO: this is currently broken
# system.etc.overlay.mutable = false;
users.users = { users.users = {
"guanranwang" = { "guanranwang" = {
isNormalUser = true; isNormalUser = true;

View file

@ -17,6 +17,7 @@
"befs" "befs"
"cramfs" "cramfs"
"efs" "efs"
"erofs"
"exofs" "exofs"
"freevxfs" "freevxfs"
"f2fs" "f2fs"