Compare commits

...

6 Commits

8 changed files with 39 additions and 20 deletions

View File

@ -96,10 +96,7 @@
programs.mosh.enable = true;
# Bluetooth ################################################################
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
};
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# Localisation #############################################################

View File

@ -8,11 +8,11 @@
]
},
"locked": {
"lastModified": 1663295607,
"narHash": "sha256-2Z2uqR9hocX2bF+CwIVauOB9mEPqhhRMEibJ49hyzwg=",
"lastModified": 1665920565,
"narHash": "sha256-0z3Ibp4aJdwU3t0KjECJUjQoReqoZj3MILmcyN4lZu0=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "af086e6fc0bda5dcf9bc030cd586fc7f41e253ef",
"rev": "33ce8dabfd3dc4968bae24126766e60d67b39dbb",
"type": "github"
},
"original": {
@ -44,11 +44,11 @@
"utils": "utils"
},
"locked": {
"lastModified": 1663227421,
"narHash": "sha256-8M2ZQPLQw0CUylKbF8pgDMQ5vxOH4i0rxwUhtPIsf7Q=",
"lastModified": 1665863351,
"narHash": "sha256-u8YWmHBTXWvQPBfKOrPWFVjvqhJ+5hUk3/29eR7APko=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "5408e27961599b1350b651f88715daf6e67244a7",
"rev": "2ecb3ea990cf737cfb42d8cd805fa86347c1afaf",
"type": "github"
},
"original": {
@ -59,11 +59,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1663178737,
"narHash": "sha256-ayOtdyoNx6BqJtTYVzdQCDz/YWb67TY/CMGacFCgNQo=",
"lastModified": 1665732960,
"narHash": "sha256-WBZ+uSHKFyjvd0w4inbm0cNExYTn8lpYFcHEes8tmec=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1158501e7c7cba26d922723cf9f70099995eb755",
"rev": "4428e23312933a196724da2df7ab78eb5e67a88e",
"type": "github"
},
"original": {
@ -74,11 +74,11 @@
},
"nur": {
"locked": {
"lastModified": 1663318972,
"narHash": "sha256-k0L/aAFhHXYQal4DlQVo+TzKN2h7yWKvWmc1ZBlhPtI=",
"lastModified": 1665916685,
"narHash": "sha256-M/SNFT5FlLwbfWLBQWtjgtk8CMFAb4ZD6EWshge5QPU=",
"owner": "nix-community",
"repo": "NUR",
"rev": "a52df269a89c229e695771a0c4ab347d45f207dc",
"rev": "29e55c0df8ae7fa986d12a2c96e38c0788ef2093",
"type": "github"
},
"original": {

View File

@ -2,7 +2,7 @@
let h = config.home.homeDirectory;
in {
home.packages = with pkgs; [ steam minecraft fahcontrol ];
home.packages = with pkgs; [ minecraft fahcontrol ];
services.mpd = {
enable = true;

View File

@ -14,7 +14,7 @@ with lib;
home.packages = with pkgs;
let
gn = pkgs.gnome3;
gn = pkgs.gnome;
evolution = pkgs.evolutionWithPlugins.override {
plugins = [ pkgs.evolution pkgs.evolution-ews ];
};

View File

@ -5,7 +5,7 @@ let
realName = nixosConfig.users.users.jez.description;
in {
accounts.email.accounts.main = rec {
primary = true;
#primary = true;
inherit realName;
inherit (params.main) address userName passwordCommand aliases;
@ -31,6 +31,27 @@ in {
msmtp.enable = true;
};
accounts.email.accounts.fm = rec {
primary = true;
inherit realName;
inherit (params.fm) address userName passwordCommand aliases;
imap = { host = params.fm.host.imap; };
smtp = { host = params.fm.host.smtp; };
mu.enable = true;
mbsync = {
enable = true;
create = "both";
remove = "both";
expunge = "both";
flatten = ".";
patterns = [ "*" ];
extraConfig.channel = { CopyArrivalDate = "yes"; };
};
msmtp.enable = true;
};
accounts.email.accounts.protonmail = rec {
inherit realName;
inherit (params.protonmail) address userName passwordCommand;

View File

@ -132,7 +132,6 @@ in {
input."1386:891:Wacom_One_by_Wacom_M_Pen".left_handed = "enabled";
startup = [
{ command = "${pkgs.foldingathome}/bin/FAHClient --send-pause"; }
{ command = "${pkgs.xorg.xrdb}/bin/xrdb -load ~/.Xresources"; }
{ command = "${pkgs.mako}/bin/mako"; }
{ command = cmds.idle; }

View File

@ -55,4 +55,6 @@
secretKeyFile = "/etc/nix/gwydion.local-1.sec";
openFirewall = true;
};
programs.steam.enable = true;
}

Binary file not shown.