1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

Compare commits

...

6 commits

Author SHA1 Message Date
Austin Horstman
a179f834ad
tests/gtk: ubuntu_font_family -> ubuntu-classic
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-11-02 22:56:40 -06:00
Austin Horstman
e7d7e76bcd
tests/darkman: python -> python2
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-11-02 22:54:56 -06:00
Austin Horstman
9a26ccef6f
taskwarrior-sync: taskwarrior -> taskwarrior2
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-11-02 22:52:52 -06:00
Austin Horstman
183bcb80b9
taskwarrior: taskwarrior -> taskwarrior2
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-11-02 22:52:47 -06:00
Austin Horstman
ee4befe0dd
darwinScrublist: taskwarrior rename
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-11-02 22:51:52 -06:00
home-manager-ci[bot]
183e8f9570 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/6a08e6bb4e46ff7fcbb53d409b253f6bad8a28ce?narHash=sha256-Q/uhWNvd7V7k1H1ZPMy/vkx3F8C13ZcdrKjO7Jv7v0c%3D' (2025-10-25)
  → 'github:NixOS/nixpkgs/2fb006b87f04c4d3bdf08cfdbc7fab9c13d94a15?narHash=sha256-kJ8lIZsiPOmbkJypG%2BB5sReDXSD1KGu2VEPNqhRa/ew%3D' (2025-10-31)
2025-11-02 04:11:14 +00:00
6 changed files with 8 additions and 8 deletions

6
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1761373498,
"narHash": "sha256-Q/uhWNvd7V7k1H1ZPMy/vkx3F8C13ZcdrKjO7Jv7v0c=",
"lastModified": 1761907660,
"narHash": "sha256-kJ8lIZsiPOmbkJypG+B5sReDXSD1KGu2VEPNqhRa/ew=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6a08e6bb4e46ff7fcbb53d409b253f6bad8a28ce",
"rev": "2fb006b87f04c4d3bdf08cfdbc7fab9c13d94a15",
"type": "github"
},
"original": {

View file

@ -87,7 +87,7 @@ in
'';
};
package = lib.mkPackageOption pkgs "taskwarrior" {
package = lib.mkPackageOption pkgs "taskwarrior2" {
nullable = true;
example = "pkgs.taskwarrior3";
};

View file

@ -19,7 +19,7 @@ in
options.services.taskwarrior-sync = {
enable = lib.mkEnableOption "Taskwarrior periodic sync";
package = lib.mkPackageOption pkgs "taskwarrior" { example = "pkgs.taskwarrior3"; };
package = lib.mkPackageOption pkgs "taskwarrior2" { example = "pkgs.taskwarrior3"; };
frequency = lib.mkOption {
type = lib.types.str;

View file

@ -157,7 +157,7 @@ let
"spotify-player"
"starship"
"superfile"
"taskwarrior"
"taskwarrior2"
"tealdeer"
"texlive"
"thefuck"

View file

@ -5,7 +5,7 @@
font = {
name = "Ubuntu";
size = 12;
package = pkgs.ubuntu_font_family;
package = pkgs.ubuntu-classic;
};
theme = {
name = "Adwaita-dark";

View file

@ -17,7 +17,7 @@
'';
lightModeScripts.color-scheme-light = pkgs.writeScript "my-python-script" ''
#!${pkgs.python}/bin/python
#!${pkgs.python2}/bin/python
print('Do something!')
'';